diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-02-20 05:48:48 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-20 00:18:48 +0000 |
commit | f6dd7e338f9e9a58fd7ae641f0aa95f976ed2b6e (patch) | |
tree | bcc667553a694030d7c346942cea76a57e3c2f1e /.github/workflows/update_publicsuffix_data.yml | |
parent | 3939003dececfec80cf7e8d3d776b50686e0f125 (diff) |
github: add missing escapes and quotes (#1736)
Diffstat (limited to '.github/workflows/update_publicsuffix_data.yml')
-rw-r--r-- | .github/workflows/update_publicsuffix_data.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/update_publicsuffix_data.yml b/.github/workflows/update_publicsuffix_data.yml index a1bf241e..7029ea48 100644 --- a/.github/workflows/update_publicsuffix_data.yml +++ b/.github/workflows/update_publicsuffix_data.yml @@ -28,14 +28,14 @@ jobs: - name: Verify update publicsuffixes file uses: gradle/gradle-build-action@v2.1.3 - if: env.UPDATED == "true" + if: "${{ env.UPDATED == 'true' }}" with: arguments: --no-configuration-cache :autofill-parser:test -PslimTests - name: Create Pull Request id: cpr uses: peter-evans/create-pull-request@v3.12.1 - if: env.UPDATED == "true" + if: "${{ env.UPDATED == 'true' }}" with: assignees: msfjarvis author: GitHub Actions <noreply@github.com> @@ -48,7 +48,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Close, re-open and enable squash merge for PR - if: steps.cpr.outputs.pull-request-operation == "created" + if: "${{ steps.cpr.outputs.pull-request-operation == 'created' }}" shell: bash run: | gh pr close "${PR_URL}" |