Merge pull request #1074 from CleverCloud/ng/fix-config #249
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/update release PR' | |
| on: | |
| push: | |
| branches: | |
| - master | |
| concurrency: | |
| group: release-please-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - id: read-changelog-types | |
| # Transform JSON to a single line for GitHub Actions output | |
| run: echo "content=$(jq -c . .github/config/changelog-types.json)" >> $GITHUB_OUTPUT | |
| - uses: google-github-actions/release-please-action@v3 | |
| with: | |
| token: ${{ secrets.CI_TOKEN }} | |
| release-type: node | |
| include-v-in-tag: false | |
| default-branch: ${{ github.ref_name }} | |
| changelog-types: ${{ steps.read-changelog-types.outputs.content }} |