Merge pull request #1927 from pi-hole/development #127
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 }} |