Skip to content

Commit

Permalink
chore: add stable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
3rdvision committed Jan 2, 2024
1 parent 84a5fcd commit 4a57346
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/stable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create stable pull request after tag push
on:
push:
tags:
- "*"
jobs:
create-pull-request:
name: Create stable pull request
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create pull request
run: gh pr create -B stable -H master --title "Merge ${GITHUB_REF#refs/*/} into stable :rocket:" --body "Created with github actions." --assignee $ASSIGNEES --reviewer $ASSIGNEES
env:
GH_TOKEN: ${{ secrets.RIPE_BOT_GITHUB_TOKEN }}
ASSIGNEES: ${{ vars.DEVOPS_ASSIGNEES }}

1 comment on commit 4a57346

@vercel
Copy link

@vercel vercel bot commented on 4a57346 Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ripe-sdk – ./

ripe-sdk-docs-csr.vercel.app
ripe-sdk-git-master-platforme.vercel.app
ripe-sdk-platforme.vercel.app

Please sign in to comment.