File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5353 starts with an uppercase character.
5454 wip : true
5555 validateSingleCommit : ${{ inputs.validateSingleCommit }}
56- scopes : |
57- *
5856
5957 - name : 🏷️ Check PR labels
6058 if : ${{ inputs.checkLabels }}
7977 - name : 🧾 Validate Commit Messages
8078 uses : webiny/action-conventional-commits@v1.3.1
8179 with :
82- subject_case : false
83- types : ${{ inputs.types }}
80+ allowed-commit-types : ${{ inputs.types }}
8481...
Original file line number Diff line number Diff line change 1+ ---
2+ name : ' 🔍 PR Validation (compat alias)'
3+ on :
4+ workflow_call :
5+ inputs :
6+ types :
7+ required : false
8+ type : string
9+ requireScope :
10+ required : false
11+ type : boolean
12+ subjectPattern :
13+ required : false
14+ type : string
15+ validateSingleCommit :
16+ required : false
17+ type : boolean
18+ checkLabels :
19+ required : false
20+ type : boolean
21+
22+ jobs :
23+ delegate :
24+ uses : ./.github/workflows/pr-checks.yml
25+ with :
26+ types : ${{ inputs.types }}
27+ requireScope : ${{ inputs.requireScope }}
28+ subjectPattern : ${{ inputs.subjectPattern }}
29+ validateSingleCommit : ${{ inputs.validateSingleCommit }}
30+ checkLabels : ${{ inputs.checkLabels }}
31+ secrets : inherit
You can’t perform that action at this time.
0 commit comments