chore(deps): update dependency aquaproj/aqua to v2.36.1 - autoclosed #754
Workflow file for this run
This file contains 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-commit-pr-title | |
on: | |
workflow_call: | |
# pull_request_target: # We don't have a lot of external contributors at this time, so only running on organizational prs opened for simplicity. | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.action }} | |
cancel-in-progress: true | |
jobs: | |
main: | |
name: conventional-commit-pr-title | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
permissions: | |
pull-requests: read | |
steps: | |
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
types: | | |
feat | |
fix | |
chore | |
refactor | |
test | |
docs | |
style | |
perf | |
ci | |
build | |
revert | |
security | |
requireScope: false | |
subjectPattern: ^(?![A-Z]).+$ | |
subjectPatternError: | | |
The subject "{subject}" found in the pull request title "{title}" | |
didn't match the configured pattern. Please ensure that the subject | |
doesn't start with an uppercase character. | |
ignoreLabels: | | |
ignore-semantic-pull-request | |
headerPattern: '^(\w*)(?:\(([\w$.\-*/ ]*)\))?: (.*)$' | |
headerPatternCorrespondence: type, scope, subject | |
wip: false # This requires elevated permissions, not using |