Skip to content

chore: introduce rollabck feature on helm build failures #287

chore: introduce rollabck feature on helm build failures

chore: introduce rollabck feature on helm build failures #287

Workflow file for this run

---
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@48f256284bd46cdaab1048c3721360e808335d50 # ratchet:amannn/action-semantic-pull-request@v6.1.1
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