Merge pull request #576 from City-of-Helsinki/update-configuration #136
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@v3 | |
with: | |
fetch-depth: 1 | |
- 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 }} |