mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-28 03:00:15 +03:00
meta: stage a merge workflow
Adds a workflow that, on any push to master, will merge master to release/next-js. Presently targeted at another branch for testing.
This commit is contained in:
parent
b5258fc916
commit
eae48b76c6
18
.github/workflows/merge.yml
vendored
Normal file
18
.github/workflows/merge.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: merge
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'jt/merge-workflow'
|
||||
jobs:
|
||||
merge-to-next-js:
|
||||
runs-on: ubuntu-latest
|
||||
name: "Merge master to release/next-js"
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: devmasx/merge-branch@v1.3.1
|
||||
with:
|
||||
type: now
|
||||
from_branch: jt/test-merge-workflow
|
||||
target_branch: jt/merge-workflow
|
||||
github_token: ${{ github.token }}
|
||||
|
Loading…
Reference in New Issue
Block a user