PADD v4.1.0 (#438) #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Sync Back to Development | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| sync-branches: | |
| runs-on: ubuntu-latest | |
| name: Syncing branches | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0 | |
| - name: Opening pull request | |
| run: gh pr create -B development -H master --title 'Sync master back into development' --body 'Created by Github action' --label 'Internal' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |