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.
1 parent eeefc94 commit f4cce8fCopy full SHA for f4cce8f
.github/workflows/release-helper.yaml
@@ -0,0 +1,31 @@
1
+name: Release Helper
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ sync_dev:
10
+ needs: correct_repository
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Check out code
14
+ uses: actions/checkout@v2
15
+ with:
16
+ ref: dev
17
+ ssh-key: ${{ secrets.CMU_DELPHI_DEPLOY_MACHINE_SSH }}
18
+ - name: Reset dev branch
19
+ run: |
20
+ git fetch origin main:main
21
+ git reset --hard main
22
+ - name: Create pull request into dev
23
+ uses: peter-evans/create-pull-request@v3
24
25
+ branch: bot/sync-main-dev
26
+ commit-message: "chore: sync main-dev"
27
+ base: dev
28
+ title: "chore: sync main->dev"
29
+ labels: chore
30
+ body: |
31
+ Syncing Main->Dev.
0 commit comments