Skip to content

Commit

Permalink
merge version bump from main back to dev
Browse files Browse the repository at this point in the history
  • Loading branch information
dsweber2 committed Jan 23, 2024
1 parent eeefc94 commit f4cce8f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release-helper.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Release Helper

on:
push:
branches:
- main

jobs:
sync_dev:
needs: correct_repository
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
with:
ref: dev
ssh-key: ${{ secrets.CMU_DELPHI_DEPLOY_MACHINE_SSH }}
- name: Reset dev branch
run: |
git fetch origin main:main
git reset --hard main
- name: Create pull request into dev
uses: peter-evans/create-pull-request@v3
with:
branch: bot/sync-main-dev
commit-message: "chore: sync main-dev"
base: dev
title: "chore: sync main->dev"
labels: chore
body: |
Syncing Main->Dev.

0 comments on commit f4cce8f

Please sign in to comment.