2022-01-10 21:07:44 +01:00
|
|
|
name: Sync Back to Development
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
sync-branches:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Syncing branches
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-10-09 20:46:02 +02:00
|
|
|
uses: actions/checkout@v3.1.0
|
2022-01-10 21:07:44 +01:00
|
|
|
- name: Opening pull request
|
2022-12-13 23:01:35 +01:00
|
|
|
run: gh pr create -B development -H master --title 'Sync master back into development' --body 'Created by Github action' --label 'internal'
|
|
|
|
env:
|
2022-01-10 21:07:44 +01:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|