2022-01-10 20:07:44 +00:00
|
|
|
name: Sync Back to Development
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
sync-branches:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Syncing branches
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2022-07-25 20:30:53 +00:00
|
|
|
uses: actions/checkout@v3.0.2
|
2022-01-10 20:07:44 +00:00
|
|
|
- name: Opening pull request
|
|
|
|
id: pull
|
|
|
|
uses: tretuna/sync-branches@1.4.0
|
|
|
|
with:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
FROM_BRANCH: 'master'
|
|
|
|
TO_BRANCH: 'development'
|
|
|
|
- name: Label the pull request to ignore for release note generation
|
2022-07-25 20:30:53 +00:00
|
|
|
uses: actions-ecosystem/action-add-labels@v1.1.0
|
2022-01-10 20:07:44 +00:00
|
|
|
with:
|
|
|
|
labels: internal
|
|
|
|
repo: ${{ github.repository }}
|
|
|
|
number: ${{ steps.pull.outputs.PULL_REQUEST_NUMBER }}
|