diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-03-14 23:55:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-14 23:55:04 -0400 |
| commit | 6f9c0a9b7a4afd0d73ab312347427e445c67f6c9 (patch) | |
| tree | b56e43426052db302eedebe024d4b07668106aa6 /.github/workflows/ci.yml | |
| parent | 96ea5b1d3d7b4ddec386d8708dc8a01c5fa946e9 (diff) | |
chore(ci): escape quotes in "Lint PR title" step (#18200)
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93fa95d6f..61a2ac6b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -295,7 +295,9 @@ jobs: run: deno run --unstable --allow-write --allow-read --allow-run ./tools/format.js --check - name: Lint PR title if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (steps.exit_early.outputs.EXIT_EARLY != ''true'' && (matrix.job == ''lint'' && github.event_name == ''pull_request''))' - run: 'deno run ./tools/verify_pr_title.js ''${{ github.event.pull_request.title }}''' + env: + PR_TITLE: '${{ github.event.pull_request.title }}' + run: deno run ./tools/verify_pr_title.js "$PR_TITLE" - name: lint.js if: '!(github.event_name == ''pull_request'' && matrix.skip_pr) && (steps.exit_early.outputs.EXIT_EARLY != ''true'' && (matrix.job == ''lint''))' run: deno run --unstable --allow-write --allow-read --allow-run ./tools/lint.js |
