mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 17:32:11 +03:00
eae48b76c6
Adds a workflow that, on any push to master, will merge master to release/next-js. Presently targeted at another branch for testing.
19 lines
418 B
YAML
19 lines
418 B
YAML
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 }}
|
|
|