We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40d72a3 commit ba8d01aCopy full SHA for ba8d01a
1 file changed
.github/workflows/conventional-label.yml
@@ -7,6 +7,8 @@ name: commit lint & label
7
jobs:
8
lint:
9
runs-on: ubuntu-latest
10
+ env:
11
+ PR_TITLE: ${{ github.event.pull_request.title }}
12
permissions:
13
pull-requests: read
14
contents: read
@@ -23,7 +25,7 @@ jobs:
23
25
run: npm ci
24
26
- name: Check PR title
27
id: check-pr-title
- run: echo "${{ github.event.pull_request.title }}" | npx commitlint --verbose
28
+ run: echo "$PR_TITLE" | npx commitlint --verbose
29
30
label:
31
0 commit comments