Merge pull request #4367 from mathesar-foundation/0.2.2 #25
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: Create PR to 'develop' branch when 'master' branch is updated. | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| create-pull-request: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: pull-request | |
| uses: repo-sync/pull-request@v2 | |
| with: | |
| destination_branch: "develop" | |
| pr_label: "work: release" |