Merge pull request #689 from City-of-Helsinki/automation/npm-audit #375
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 }} |