-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Wouter Termont <[email protected]>
- Loading branch information
1 parent
611e2c5
commit ba40d87
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
## | ||
# This workflow merges every change in main also into the levelX branches. | ||
# | ||
# An alternative might be to write it out manually | ||
# (e.g. as in auto-pull-request-creator, or with peter-evans/create-pull-request). | ||
## | ||
|
||
name: Forward merge main to levels | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
workflow_dispatch: # for testing | ||
|
||
jobs: | ||
forward-merge: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: NicholasBoll/[email protected] | ||
with: | ||
token: ${{secrets.GITHUB_TOKEN}} | ||
branches: main+level0 #, main + level1 #, main + level2 | ||
prefix: 'chore: ' |