v11.0.0 - Laravel 12 Update #3
Workflow file for this run
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: Generate changelog | |
| on: | |
| release: | |
| types: [created, edited] | |
| jobs: | |
| generate-changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - uses: BobAnkh/[email protected] | |
| with: | |
| REPO_NAME: "jeremykenedy/laravel-spa" | |
| ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| PATH: "CHANGELOG.md" | |
| COMMIT_MESSAGE: "docs(CHANGELOG): update release notes" | |
| TYPE: "feat:Feature,fix:Bug Fixes,docs:Documentation,refactor:Refactor,perf:Performance Improvements" | |
| REGENERATE_COUNT: -1 | |
| PULL_REQUEST: true | |
| BRANCH: "master" |