We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 36f9d91 + 190b1c8 commit 35f6f4bCopy full SHA for 35f6f4b
1 file changed
.github/workflows/create-release.yml
@@ -0,0 +1,22 @@
1
+name: Create a release pull request
2
+
3
+on:
4
+ pull_request:
5
+ types: [closed]
6
+ branches: [ "main" ]
7
+ workflow_dispatch:
8
9
+jobs:
10
+ create-release-pr:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
15
+ - name: Create a release pull request
16
+ uses: bakunyo/git-pr-release-action@master
17
+ env:
18
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
+ GIT_PR_RELEASE_BRANCH_PRODUCTION: release
20
+ GIT_PR_RELEASE_BRANCH_STAGING: main
21
+ GIT_PR_RELEASE_LABELS: release
22
0 commit comments