fix: move pre-commit/pytest dev tools out of prod deps (unblock deploy) #80
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: pr-title-lint | |
| # Enforces Conventional Commits on PR titles so squash-merged commits drive | |
| # release-please correctly. See Data Services Versioning Standard §7. | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| perf | |
| docs | |
| chore | |
| refactor | |
| test | |
| ci | |
| build | |
| style | |
| revert | |
| deps | |
| requireScope: false | |
| subjectPattern: ^(?![A-Z]).+$ | |
| subjectPatternError: | | |
| PR title subject must start with a lowercase letter. | |
| Example: `feat: add /wells/{id}/assets endpoint` |