From 41333841f40abe1b086e189ae1a0a26cc4cf77c3 Mon Sep 17 00:00:00 2001 From: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Date: Tue, 7 Oct 2025 07:39:12 +0200 Subject: [PATCH] fix: Add condition to skip dependabot for assignees --- .github/workflows/auto-assign.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml index 2a27583038..cd43b57ac4 100644 --- a/.github/workflows/auto-assign.yml +++ b/.github/workflows/auto-assign.yml @@ -15,6 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions-ecosystem/action-add-assignees@v1 + if: ${{ github.actor != 'dependabot[bot]' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} assignees: ${{ github.actor }}