[Stash -> GitHub] Sync masters after conflict #10
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: PR from internal repo | |
| on: | |
| push: | |
| branches: | |
| - '**-from-stash' | |
| jobs: | |
| create_pr: | |
| name: Create PR from internal repo branch | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Checkout upstream | |
| uses: actions/checkout@v2 | |
| - name: Create PR | |
| run: | | |
| gh pr create --base main --body "Automated update of shared part" --title "Update from internal repo" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |