Skip to content

Commit f4cce8f

Browse files
committed
merge version bump from main back to dev
1 parent eeefc94 commit f4cce8f

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/release-helper.yaml

+31
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)