Skip to content

Commit

Permalink
fix: properly quote PR_TITLE (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar committed Jul 18, 2023
1 parent f04a76d commit dd9aadf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ jobs:
env:
PR_TITLE: ${{ github.event.pull_request.title }}
run: |
echo '$PR_TITLE' | npx --offline commitlint -V
echo "$PR_TITLE" | npx --offline commitlint -V
2 changes: 1 addition & 1 deletion lib/content/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
env:
PR_TITLE: $\{{ github.event.pull_request.title }}
run: |
echo '$PR_TITLE' | {{ rootNpxPath }} --offline commitlint -V
echo "$PR_TITLE" | {{ rootNpxPath }} --offline commitlint -V
6 changes: 3 additions & 3 deletions tap-snapshots/test/apply/source-snapshots.js.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ jobs:
env:
PR_TITLE: \${{ github.event.pull_request.title }}
run: |
echo '$PR_TITLE' | npx --offline commitlint -V
echo "$PR_TITLE" | npx --offline commitlint -V
.github/workflows/release.yml
========================================
Expand Down Expand Up @@ -2491,7 +2491,7 @@ jobs:
env:
PR_TITLE: \${{ github.event.pull_request.title }}
run: |
echo '$PR_TITLE' | npx --offline commitlint -V
echo "$PR_TITLE" | npx --offline commitlint -V
.github/workflows/release.yml
========================================
Expand Down Expand Up @@ -4023,7 +4023,7 @@ jobs:
env:
PR_TITLE: \${{ github.event.pull_request.title }}
run: |
echo '$PR_TITLE' | npx --offline commitlint -V
echo "$PR_TITLE" | npx --offline commitlint -V
.github/workflows/release.yml
========================================
Expand Down

0 comments on commit dd9aadf

Please sign in to comment.