From c0dc79608b0f03deb6f69999ba1901574de033bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20M=2E=20Requena=20Plens?= Date: Mon, 29 Jun 2026 14:33:42 +0200 Subject: [PATCH] ci: also skip dependabot PRs in auto-assign --- .github/workflows/auto-assign.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml index fa9f578..8f5d43d 100644 --- a/.github/workflows/auto-assign.yml +++ b/.github/workflows/auto-assign.yml @@ -13,8 +13,8 @@ jobs: issues: write pull-requests: write if: >- - (github.event_name == 'issues' && github.event.issue.user.login != 'jmrplens') || - (github.event_name == 'pull_request' && github.event.pull_request.user.login != 'jmrplens') + (github.event_name == 'issues' && github.event.issue.user.login != 'jmrplens' && github.event.issue.user.login != 'dependabot[bot]') || + (github.event_name == 'pull_request' && github.event.pull_request.user.login != 'jmrplens' && github.event.pull_request.user.login != 'dependabot[bot]') steps: - name: Assign to jmrplens env: