Merge pull request #979 from City-of-Helsinki/update-configuration #437
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
| on: | |
| push: | |
| branches: | |
| - dev | |
| name: Automatic release PR | |
| jobs: | |
| release-pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create pull request | |
| run: | | |
| gh pr create \ | |
| --base main \ | |
| --head dev \ | |
| --title "Dev to main" \ | |
| --body "Dev to main" || true | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |