feat(attestation): implement transfer_attestation for compromised #145
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: Validate Commit Messages | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| validate-commits: | |
| name: Check Conventional Commits | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Validate commit messages | |
| uses: amannn/action-semantic-pull-request@v5 | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| test | |
| refactor | |
| perf | |
| chore | |
| requireScope: false | |
| subjectPattern: ^(?![A-Z]).+[^.]$ | |
| subjectPatternError: | | |
| The subject "{subject}" found in the pull request title "{title}" doesn't match the configured pattern. | |
| Please ensure the subject starts with a lowercase letter and doesn't end with a period. | |
| validateSingleCommit: false |