From 01e1813020854c72fddcd0fd4d8a4a239d83d392 Mon Sep 17 00:00:00 2001 From: Marcus Hert Da Coregio Date: Tue, 9 Jul 2024 08:16:06 -0300 Subject: [PATCH] Remove single quotes from boolean value Issue gh-14484 --- .github/workflows/mark-duplicate-dependabot-prs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mark-duplicate-dependabot-prs.yml b/.github/workflows/mark-duplicate-dependabot-prs.yml index 95d1417612..ff4217a8ab 100644 --- a/.github/workflows/mark-duplicate-dependabot-prs.yml +++ b/.github/workflows/mark-duplicate-dependabot-prs.yml @@ -15,7 +15,7 @@ jobs: check_duplicate_prs: runs-on: ubuntu-latest - if: github.event.pull_request.merged == 'true' && github.event.pull_request.user.login == 'dependabot[bot]' + if: github.event.pull_request.merged == true && github.event.pull_request.user.login == 'dependabot[bot]' steps: - name: Checkout Repository uses: actions/checkout@v4