We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a2f0d61 + ca743d0 commit 9ea8a1bCopy full SHA for 9ea8a1b
.github/workflows/update-release-candidate-branch.yml
@@ -0,0 +1,30 @@
1
+---
2
+name: Update Release candidate Branch
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - main
8
9
+jobs:
10
+ update-release-candidate-branch:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout main branch
15
+ uses: actions/checkout@v4
16
+ with:
17
+ ref: main
18
19
+ - name: Pull latest changes
20
+ run: git pull origin main
21
22
+ - name: Checkout release-candidate branch
23
+ run: git checkout release-candidate
24
25
+ - name: Merge main into release-candidate
26
+ run: git merge main
27
28
+ - name: Push changes
29
+ run: |
30
+ git push origin release-candidate
0 commit comments