Update to specification from 525ff38e5fe2a118f5be5d25189708b590616dd4 #1012
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: "Conventional Commits" | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| permissions: | |
| contents: read | |
| jobs: | |
| main: | |
| permissions: | |
| pull-requests: read | |
| statuses: write | |
| name: Validate PR Title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: semantic-pull-request | |
| uses: amannn/action-semantic-pull-request@v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| validateSingleCommit: false |