From c43d2f2d62900f98536e26edf7c853b0794028d4 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Thu, 5 Jun 2025 17:24:26 -0400 Subject: [PATCH] feat(repo): add ndcunningham to Claude workflow authorized users (#31479) ## Current Behavior Currently, ndcunningham is not included in the list of authorized users who can trigger the Claude AI assistant in GitHub workflows. ## Expected Behavior With this change, ndcunningham will be able to trigger the Claude AI assistant by mentioning @claude in GitHub issue comments, PR comments, and PR reviews. ## Related Issue(s) This change adds ndcunningham to the authorized user list for the Claude workflow, enabling them to use the AI assistant for development tasks. --- .github/workflows/claude.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index f0267cbbf1..5821bf5825 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -16,7 +16,7 @@ on: jobs: claude: if: | - contains(fromJson('["AgentEnder", "barbados-clemens", "Cammisuli", "Coly010", "FrozenPandaz", "isaacplmann", "JamesHenry", "jaysoo", "leosvelperez", "mandarini", "MaxKless", "meeroslav", "nartc", "philipjfulcher", "vsavkin", "xiongemi"]'), github.actor) && + contains(fromJson('["AgentEnder", "barbados-clemens", "Cammisuli", "Coly010", "FrozenPandaz", "isaacplmann", "JamesHenry", "jaysoo", "leosvelperez", "mandarini", "MaxKless", "meeroslav", "nartc", "ndcunningham", "philipjfulcher", "vsavkin", "xiongemi"]'), github.actor) && ((github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) || (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||