From 07af1f88be3ba435cfd8bb269940b8d592e7cf63 Mon Sep 17 00:00:00 2001 From: Daniel Solis Date: Sun, 30 Aug 2026 20:32:35 -0600 Subject: [PATCH 1/2] ci: add danielsolis-dotcms to the Claude backend reviewer pilot The reviewer's Gate 1 allowlist skips any PR whose author is not listed, so review was silently not running for this author. Adding the login; no other change to the workflow. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/ai_claude-backend-reviewer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ai_claude-backend-reviewer.yml b/.github/workflows/ai_claude-backend-reviewer.yml index a35ca19d3863..9936c5f0cdd6 100644 --- a/.github/workflows/ai_claude-backend-reviewer.yml +++ b/.github/workflows/ai_claude-backend-reviewer.yml @@ -29,7 +29,7 @@ jobs: env: AUTHOR: ${{ github.event.pull_request.user.login }} run: | - PILOT_AUTHORS='["dsolistorres","gortiz-dotcms","dsilvam"]' + PILOT_AUTHORS='["dsolistorres","gortiz-dotcms","dsilvam","danielsolis-dotcms"]' if echo "$PILOT_AUTHORS" | jq -e --arg a "$AUTHOR" 'index($a) != null' > /dev/null; then echo "authorized=true" >> $GITHUB_OUTPUT echo "✅ $AUTHOR is in the pilot list" From 217ace811f15770964288608dac5942fef78cbd1 Mon Sep 17 00:00:00 2001 From: Daniel Solis Date: Sun, 30 Aug 2026 20:54:21 -0600 Subject: [PATCH 2/2] ci: point the reviewer pilot at the current accounts Two of the listed logins are no longer members of the dotCMS org, so they cannot open a PR here and their entries had no effect. Meanwhile two accounts that do open PRs here were not listed, so the reviewer was skipping them. Replaces the list rather than appending, so it reflects who can currently receive a review. gortiz-dotcms is unchanged. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/ai_claude-backend-reviewer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ai_claude-backend-reviewer.yml b/.github/workflows/ai_claude-backend-reviewer.yml index 9936c5f0cdd6..72934e892f66 100644 --- a/.github/workflows/ai_claude-backend-reviewer.yml +++ b/.github/workflows/ai_claude-backend-reviewer.yml @@ -29,7 +29,7 @@ jobs: env: AUTHOR: ${{ github.event.pull_request.user.login }} run: | - PILOT_AUTHORS='["dsolistorres","gortiz-dotcms","dsilvam","danielsolis-dotcms"]' + PILOT_AUTHORS='["gortiz-dotcms","danielsolis-dotcms","danielsilva-dotcms"]' if echo "$PILOT_AUTHORS" | jq -e --arg a "$AUTHOR" 'index($a) != null' > /dev/null; then echo "authorized=true" >> $GITHUB_OUTPUT echo "✅ $AUTHOR is in the pilot list"