File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,19 @@ jobs:
22
22
- name : Install deps
23
23
run : npm ci --ignore-scripts
24
24
- name : Verify PR title is in the correct format
25
+ env :
26
+ TITLE : ${{ github.event.pull_request.title }}
25
27
run : |
26
- echo "${{ github.event.pull_request.title }}" | npx commitlint -V
28
+ echo $TITLE | npx commitlint -V
27
29
28
30
needs-migration-docs-check :
29
31
runs-on : ubuntu-latest
30
32
steps :
31
33
- name : Echo event name
32
- run : echo "${{ github.event_name }}:${{ github.event.pull_request.title }}"
34
+ env :
35
+ TITLE : ${{ github.event.pull_request.title }}
36
+ EVENT : ${{ github.event_name }}
37
+ run : echo "$EVENT:$TITLE"
33
38
34
39
- name : Check PR name for breaking changes
35
40
if : github.event_name == 'pull_request' && ( contains(github.event.pull_request.title, '!') || contains(github.event.pull_request.title, 'BREAKING CHANGE') )
You can’t perform that action at this time.
0 commit comments