From e2a8b3caaefd64d481b0dae8150e34621a755afe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Tue, 18 Jun 2024 19:54:06 +0200 Subject: [PATCH] Fix linters workflow on Dependabot pull requests The name of the actor is not dependabot but dependabot[bot] [1]. [1] https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#responding-to-events --- .github/workflows/pronto.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pronto.yml b/.github/workflows/pronto.yml index e99175ac1..76d851cdc 100644 --- a/.github/workflows/pronto.yml +++ b/.github/workflows/pronto.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: pronto: runs-on: ubuntu-latest - if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name && github.actor != 'dependabot' + if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name && github.actor != 'dependabot[bot]' steps: - name: Checkout code uses: actions/checkout@v4