ci: pass PAT to release-please so its PRs trigger workflows #26
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: Lint PR title | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| commitlint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| chore | |
| refactor | |
| test | |
| ci | |
| perf | |
| style | |
| requireScope: false | |
| subjectPattern: '^[a-z].+[^.]$' | |
| subjectPatternError: | | |
| The subject "{subject}" found in the PR title "{title}" | |
| did not match the pattern. The subject must start with a lowercase | |
| character and not end with a period. |