Bump codecov/codecov-action from 6 to 7 #7
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, synchronize, reopened] | |
| jobs: | |
| commitlint: | |
| name: Check PR title (Conventional Commits) | |
| runs-on: ubuntu-latest | |
| # Dependabot and release-please manage their own titles — skip them. | |
| if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'github-actions[bot]' }} | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| build | |
| ci | |
| chore | |
| revert | |
| deps | |
| requireScope: false | |
| # release-please opens PRs like "chore: release 2.0.2" — allow those through | |
| ignoreLabels: | | |
| autorelease: pending | |
| autorelease: tagged |