Merge pull request #490 from City-of-Helsinki/update-configuration #222
This file contains 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 }} |