From a582da2ee07e95f300b3e58b34a63fae64186259 Mon Sep 17 00:00:00 2001 From: JacobPEvans <20714140+JacobPEvans-personal@users.noreply.github.com> Date: Fri, 29 May 2026 01:06:16 -0400 Subject: [PATCH] fix(ci): retarget reusable-workflow uses: refs to current org homes GitHub Actions uses: does not follow repo move/rename redirects and cannot use variables; correct the literal owner. Part of an org-wide sweep. Assisted-by: Claude --- .github/workflows/ci-fix.yml | 2 +- .github/workflows/code-simplifier.yml | 2 +- .github/workflows/dogfood-best-practices.yml | 2 +- .github/workflows/dogfood-ci.yml | 2 +- .github/workflows/dogfood-issue-hygiene.yml | 2 +- .github/workflows/dogfood-issue-sweeper.yml | 2 +- .github/workflows/final-pr-review.yml | 2 +- .github/workflows/gh-aw-pin-refresh.yml | 2 +- .github/workflows/issue-resolver.yml | 2 +- .github/workflows/post-merge-docs-review.yml | 2 +- .github/workflows/post-merge-tests.yml | 2 +- .github/workflows/release-please.yml | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci-fix.yml b/.github/workflows/ci-fix.yml index 52040e4..0ae3857 100644 --- a/.github/workflows/ci-fix.yml +++ b/.github/workflows/ci-fix.yml @@ -224,7 +224,7 @@ jobs: run: bash .ai-workflows/.github/scripts/render-prompt.sh .ai-workflows/.github/prompts/ci-fix.md FAILURE_LOGS REPO_CONTEXT CI_STRUCTURE ATTEMPT_NUM WORKFLOW_NAME RUN_ID RUN_URL EVENT_NAME TRIGGER_ACTOR - name: Run Claude Code with bot attribution - uses: JacobPEvans/ai-workflows/.github/actions/run-claude-code@main + uses: dryvist/ai-workflows/.github/actions/run-claude-code@main with: prompt: ${{ steps.prompt.outputs.content }} model: ${{ vars.AI_MODEL_CODE || vars.AI_MODEL || 'openrouter/free' }} diff --git a/.github/workflows/code-simplifier.yml b/.github/workflows/code-simplifier.yml index 710bddd..a36c40e 100644 --- a/.github/workflows/code-simplifier.yml +++ b/.github/workflows/code-simplifier.yml @@ -121,7 +121,7 @@ jobs: run: bash .ai-workflows/.github/scripts/render-prompt.sh .ai-workflows/.github/prompts/code-simplifier.md WORKFLOW_NAME RUN_ID RUN_URL EVENT_NAME TRIGGER_ACTOR - name: Run Claude Code with bot attribution - uses: JacobPEvans/ai-workflows/.github/actions/run-claude-code@main + uses: dryvist/ai-workflows/.github/actions/run-claude-code@main with: prompt: ${{ steps.prompt.outputs.content }} model: ${{ vars.AI_MODEL_CODE || vars.AI_MODEL || 'openrouter/free' }} diff --git a/.github/workflows/dogfood-best-practices.yml b/.github/workflows/dogfood-best-practices.yml index d356508..5a7b8f9 100644 --- a/.github/workflows/dogfood-best-practices.yml +++ b/.github/workflows/dogfood-best-practices.yml @@ -12,5 +12,5 @@ permissions: pull-requests: read jobs: best-practices: - uses: JacobPEvans/ai-workflows/.github/workflows/best-practices.yml@v0.16.0 + uses: dryvist/ai-workflows/.github/workflows/best-practices.yml@v0.16.0 secrets: inherit diff --git a/.github/workflows/dogfood-ci.yml b/.github/workflows/dogfood-ci.yml index 42947bb..eb4ee8d 100644 --- a/.github/workflows/dogfood-ci.yml +++ b/.github/workflows/dogfood-ci.yml @@ -23,7 +23,7 @@ permissions: jobs: ci-suite: - uses: JacobPEvans/ai-workflows/.github/workflows/suite-ci.yml@v0.16.0 + uses: dryvist/ai-workflows/.github/workflows/suite-ci.yml@v0.16.0 with: repo_context: "Reusable GitHub Actions workflows for AI-powered CI/CD automation (prompts, scripts, YAML workflows)" ci_structure: "test.yml (bun test for JavaScript scripts)" diff --git a/.github/workflows/dogfood-issue-hygiene.yml b/.github/workflows/dogfood-issue-hygiene.yml index e3b2000..a2578e6 100644 --- a/.github/workflows/dogfood-issue-hygiene.yml +++ b/.github/workflows/dogfood-issue-hygiene.yml @@ -12,5 +12,5 @@ permissions: pull-requests: read jobs: hygiene: - uses: JacobPEvans/ai-workflows/.github/workflows/issue-hygiene.yml@v0.16.0 + uses: dryvist/ai-workflows/.github/workflows/issue-hygiene.yml@v0.16.0 secrets: inherit diff --git a/.github/workflows/dogfood-issue-sweeper.yml b/.github/workflows/dogfood-issue-sweeper.yml index 19af840..b7acac7 100644 --- a/.github/workflows/dogfood-issue-sweeper.yml +++ b/.github/workflows/dogfood-issue-sweeper.yml @@ -12,5 +12,5 @@ permissions: pull-requests: read jobs: sweep: - uses: JacobPEvans/ai-workflows/.github/workflows/issue-sweeper.yml@v0.16.0 + uses: dryvist/ai-workflows/.github/workflows/issue-sweeper.yml@v0.16.0 secrets: inherit diff --git a/.github/workflows/final-pr-review.yml b/.github/workflows/final-pr-review.yml index c34919d..0c9e15e 100644 --- a/.github/workflows/final-pr-review.yml +++ b/.github/workflows/final-pr-review.yml @@ -141,7 +141,7 @@ jobs: - name: Run Claude Code with bot attribution if: steps.bot-check.outputs.run == 'true' - uses: JacobPEvans/ai-workflows/.github/actions/run-claude-code@main + uses: dryvist/ai-workflows/.github/actions/run-claude-code@main with: prompt: ${{ steps.prompt.outputs.content }} model: ${{ vars.AI_MODEL_REVIEW || vars.AI_MODEL || 'openrouter/free' }} diff --git a/.github/workflows/gh-aw-pin-refresh.yml b/.github/workflows/gh-aw-pin-refresh.yml index fbcfd87..d04f9e6 100644 --- a/.github/workflows/gh-aw-pin-refresh.yml +++ b/.github/workflows/gh-aw-pin-refresh.yml @@ -25,7 +25,7 @@ jobs: permissions: contents: write pull-requests: write - uses: JacobPEvans/.github/.github/workflows/_gh-aw-pin-refresh.yml@main + uses: JacobPEvans-personal/.github/.github/workflows/_gh-aw-pin-refresh.yml@main with: operation: ${{ inputs.operation || 'compile' }} secrets: diff --git a/.github/workflows/issue-resolver.yml b/.github/workflows/issue-resolver.yml index fc71455..e3f578e 100644 --- a/.github/workflows/issue-resolver.yml +++ b/.github/workflows/issue-resolver.yml @@ -145,7 +145,7 @@ jobs: run: bash .ai-workflows/.github/scripts/render-prompt.sh .ai-workflows/.github/prompts/issue-resolver.md REPO_CONTEXT ISSUE_NUMBER ISSUE_TITLE ISSUE_BODY ISSUE_LABELS ATTEMPT MAX_ATTEMPTS WORKFLOW_NAME RUN_ID RUN_URL EVENT_NAME TRIGGER_ACTOR - name: Run Claude Code with bot attribution - uses: JacobPEvans/ai-workflows/.github/actions/run-claude-code@main + uses: dryvist/ai-workflows/.github/actions/run-claude-code@main with: prompt: ${{ steps.prompt.outputs.content }} model: ${{ inputs.model || vars.AI_MODEL_PLAN || vars.AI_MODEL || 'openrouter/free' }} diff --git a/.github/workflows/post-merge-docs-review.yml b/.github/workflows/post-merge-docs-review.yml index 72e73d7..86ab064 100644 --- a/.github/workflows/post-merge-docs-review.yml +++ b/.github/workflows/post-merge-docs-review.yml @@ -162,7 +162,7 @@ jobs: run: bash .ai-workflows/.github/scripts/render-prompt.sh .ai-workflows/.github/prompts/post-merge-docs-review.md COMMIT_SHA REPO_NAME WORKFLOW_NAME RUN_ID RUN_URL EVENT_NAME TRIGGER_ACTOR - name: Run Claude Code with bot attribution - uses: JacobPEvans/ai-workflows/.github/actions/run-claude-code@main + uses: dryvist/ai-workflows/.github/actions/run-claude-code@main with: prompt: ${{ steps.prompt.outputs.content }} model: ${{ vars.AI_MODEL_DOCS || vars.AI_MODEL }} diff --git a/.github/workflows/post-merge-tests.yml b/.github/workflows/post-merge-tests.yml index 9df02a2..bdfbb8d 100644 --- a/.github/workflows/post-merge-tests.yml +++ b/.github/workflows/post-merge-tests.yml @@ -162,7 +162,7 @@ jobs: run: bash .ai-workflows/.github/scripts/render-prompt.sh .ai-workflows/.github/prompts/post-merge-tests.md MERGE_SHA REPO_FULL_NAME WORKFLOW_NAME RUN_ID RUN_URL EVENT_NAME TRIGGER_ACTOR - name: Run Claude Code with bot attribution - uses: JacobPEvans/ai-workflows/.github/actions/run-claude-code@main + uses: dryvist/ai-workflows/.github/actions/run-claude-code@main with: prompt: ${{ steps.prompt.outputs.content }} model: ${{ vars.AI_MODEL_CODE || vars.AI_MODEL }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 3d0354d..2aade78 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -11,6 +11,6 @@ jobs: permissions: contents: write pull-requests: write - uses: JacobPEvans/.github/.github/workflows/_release-please.yml@main + uses: JacobPEvans-personal/.github/.github/workflows/_release-please.yml@main secrets: GH_APP_PRIVATE_KEY: ${{ secrets.GH_APP_PRIVATE_KEY }}