We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dca97ac commit eee9306Copy full SHA for eee9306
1 file changed
.github/workflows/build.yml
@@ -12,6 +12,8 @@ jobs:
12
strategy:
13
matrix:
14
node: [18.x]
15
+ env:
16
+ TITLE: ${{ github.event.pull_request.title }}
17
18
steps:
19
- name: Checkout code
@@ -26,7 +28,7 @@ jobs:
26
28
run: npm i
27
29
30
- name: Verify Github PR Title
- run: echo "${{ github.event.pull_request.title }}" | npx commitlint
31
+ run: echo $TITLE | npx commitlint
32
33
- name: Verify Git Commit Name
34
run: git log -1 --pretty=format:"%s" | npx commitlint
0 commit comments