|
| 1 | +--- |
| 2 | + |
| 3 | +# https://github.com/google-github-actions/release-please-action#release-types-supported |
| 4 | + |
| 5 | +on: # yamllint disable-line rule:truthy |
| 6 | + push: |
| 7 | + branches: |
| 8 | + - master |
| 9 | + |
| 10 | +name: release-please |
| 11 | + |
| 12 | +jobs: |
| 13 | + release-please: |
| 14 | + runs-on: ubuntu-latest |
| 15 | + steps: |
| 16 | + - uses: google-github-actions/release-please-action@v3 |
| 17 | + id: release |
| 18 | + with: |
| 19 | + token: ${{ secrets.GITHUB_TOKEN }} |
| 20 | + release-type: node |
| 21 | + package-name: php-package-tpl |
| 22 | + default-branch: master |
| 23 | + changelog-types: | |
| 24 | + [ |
| 25 | + { "type": "feat", "section": "Features", "hidden": false }, |
| 26 | + { "type": "fix", "section": "Bug Fixes", "hidden": false }, |
| 27 | + { "type": "perf", "section": "Performance Improvements", "hidden": false }, |
| 28 | + { "type": "docs", "section": "Documentation", "hidden": false }, |
| 29 | + { "type": "chore", "section": "Miscellaneous", "hidden": false }, |
| 30 | + { "type": "style", "section": "Styles", "hidden": true }, |
| 31 | + { "type": "revert", "section": "Reverts", "hidden": true }, |
| 32 | + { "type": "deps", "section": "Dependencies", "hidden": true }, |
| 33 | + { "type": "refactor", "section": "Code Refactoring", "hidden": true }, |
| 34 | + { "type": "test", "section": "Tests", "hidden": true }, |
| 35 | + { "type": "build", "section": "Build System", "hidden": true }, |
| 36 | + { "type": "ci", "section": "Continuous Integration", "hidden": true } |
| 37 | + ] |
| 38 | +
|
| 39 | +... |
0 commit comments