Skip to content

Commit

Permalink
[wip] try release pr workflow
Browse files Browse the repository at this point in the history
this will copy commits from main to the "next" branch. this is one of two actions I found. we may not go with either cause they don't handle release labels, but want to see if it works
  • Loading branch information
jtoar committed Sep 16, 2022
1 parent 7d625b2 commit b047270
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release PR
on:
push:
branches: [main]

jobs:
release_pr:
runs-on: ubuntu-latest
name: release_pr
steps:
- name: checkout
uses: actions/checkout@v1
- name: Create PR to branch
uses: gorillio/github-action-cherry-pick@master
with:
pr_branch: 'next'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITBOT_EMAIL: <BOT_EMAIL>
DRY_RUN: false

0 comments on commit b047270

Please sign in to comment.