chore: Update aws-actions/amazon-ecr-login action to v2.1.1 #275
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 Pull Request Titles" | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - labeled | |
| - unlabeled | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| jobs: | |
| semantic-validation: | |
| name: Validate PR title format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # ratchet:amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Configure which types are allowed (per Conventional Commits spec) | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| build | |
| ci | |
| chore | |
| revert | |
| # Configure which scopes are allowed (lowercase) | |
| scopes: | | |
| scripts | |
| ci | |
| docs | |
| tests | |
| deps | |
| helm | |
| charts | |
| workflows | |
| # Require the scope to be provided | |
| requireScope: false | |
| # Configure validation for ticket references | |
| # This regex makes the ticket reference optional and supports breaking changes | |
| # Format: type(scope)!: subject [TICKET] | |
| headerPattern: '^(\w+)(?:\(([^)]*)\))?(!?): (.+?)(?:\s+([A-Z]+-\d+|NOTASK))?' | |
| headerPatternCorrespondence: type,scope,breaking,subject,ticket | |
| # Ignore merge commits from dependabot and similar | |
| ignoreLabels: | | |
| bot | |
| ignore-semantic-pull-request | |
| # Configure validation for the PR body (optional) | |
| validateSingleCommit: false |