From fda6be0a5c881f3a04ce6bb8a1e4d42ef04aca3a Mon Sep 17 00:00:00 2001 From: amcheste-ai-agent <278991699+amcheste-ai-agent@users.noreply.github.com> Date: Mon, 11 May 2026 20:43:16 -0400 Subject: [PATCH] chore: remove auto-assign workflow The bot account cannot self-assign PRs via GitHub App token, which causes the workflow to fail on every bot-authored PR. Per engineering-handbook guidance, bot PRs route to @amcheste via CODEOWNERS already, so defaulting the assignee on every PR is noise. Co-Authored-By: Claude Opus 4.7 (1M context) Co-Authored-By: amcheste <13696614+amcheste@users.noreply.github.com> --- .github/workflows/auto-assign.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/auto-assign.yml diff --git a/.github/workflows/auto-assign.yml b/.github/workflows/auto-assign.yml deleted file mode 100644 index 66b7b8f..0000000 --- a/.github/workflows/auto-assign.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Auto-assign PR creator -on: - pull_request: - types: [opened] - -jobs: - assign: - runs-on: ubuntu-latest - permissions: - pull-requests: write - issues: write - steps: - - uses: actions/github-script@v7 - with: - script: | - await github.rest.issues.addAssignees({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: context.issue.number, - assignees: [context.payload.pull_request.user.login] - });