mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-13 08:38:43 +03:00
28 lines
700 B
YAML
28 lines
700 B
YAML
name: merge
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
jobs:
|
|
merge-to-next-js:
|
|
runs-on: ubuntu-latest
|
|
name: "Merge master to release/next-userspace"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: devmasx/merge-branch@v1.3.1
|
|
with:
|
|
type: now
|
|
target_branch: release/next-userspace
|
|
github_token: ${{ secrets.JANEWAY_BOT_TOKEN }}
|
|
|
|
merge-to-group-timer:
|
|
runs-on: ubuntu-latest
|
|
name: "Merge master to ops/group-timer"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: devmasx/merge-branch@v1.3.1
|
|
with:
|
|
type: now
|
|
target_branch: ops/group-timer
|
|
github_token: ${{ secrets.JANEWAY_BOT_TOKEN }}
|