@@ -747,8 +747,10 @@ jobs:
747
747
npx --offline commitlint -V --from 'origin/\${{ github.base_ref }}' --to \${{ github.event.pull_request.head.sha }}
748
748
- name: Run Commitlint on PR Title
749
749
if: steps.commit.outcome == 'failure'
750
+ env:
751
+ PR_TITLE: \${{ github.event.pull_request.title }}
750
752
run: |
751
- echo '\${{ github.event.pull_request.title }} ' | npx --offline commitlint -V
753
+ echo '$PR_TITLE ' | npx --offline commitlint -V
752
754
753
755
.github/workflows/release.yml
754
756
========================================
@@ -2332,8 +2334,10 @@ jobs:
2332
2334
npx --offline commitlint -V --from 'origin/\${{ github.base_ref }}' --to \${{ github.event.pull_request.head.sha }}
2333
2335
- name: Run Commitlint on PR Title
2334
2336
if: steps.commit.outcome == 'failure'
2337
+ env:
2338
+ PR_TITLE: \${{ github.event.pull_request.title }}
2335
2339
run: |
2336
- echo '\${{ github.event.pull_request.title }} ' | npx --offline commitlint -V
2340
+ echo '$PR_TITLE ' | npx --offline commitlint -V
2337
2341
2338
2342
.github/workflows/release.yml
2339
2343
========================================
@@ -3760,8 +3764,10 @@ jobs:
3760
3764
npx --offline commitlint -V --from 'origin/\${{ github.base_ref }}' --to \${{ github.event.pull_request.head.sha }}
3761
3765
- name: Run Commitlint on PR Title
3762
3766
if: steps.commit.outcome == 'failure'
3767
+ env:
3768
+ PR_TITLE: \${{ github.event.pull_request.title }}
3763
3769
run: |
3764
- echo '\${{ github.event.pull_request.title }} ' | npx --offline commitlint -V
3770
+ echo '$PR_TITLE ' | npx --offline commitlint -V
3765
3771
3766
3772
.github/workflows/release.yml
3767
3773
========================================
0 commit comments