From 1c5615a382e428deeccb3f8004756a0ad19a725f Mon Sep 17 00:00:00 2001 From: JacobPEvans <20714140+JacobPEvans-personal@users.noreply.github.com> Date: Fri, 29 May 2026 01:05:05 -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-gate.yml | 8 ++++---- .github/workflows/release-please.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-gate.yml b/.github/workflows/ci-gate.yml index da49558..2c122fa 100644 --- a/.github/workflows/ci-gate.yml +++ b/.github/workflows/ci-gate.yml @@ -116,7 +116,7 @@ jobs: name: Python Security needs: changes if: needs.changes.outputs.lockfile == 'true' - uses: JacobPEvans/.github/.github/workflows/_python-security.yml@main + uses: JacobPEvans-personal/.github/.github/workflows/_python-security.yml@main with: python-dirs: "." # MUST mirror osv-scanner.toml `[[IgnoredVulns]]`. Each ID is documented @@ -137,18 +137,18 @@ jobs: # osv-scanner.toml edits need to be validated against current advisories # even when no lockfile changes accompany them. if: always() - uses: JacobPEvans/.github/.github/workflows/_osv-scan.yml@main + uses: JacobPEvans-personal/.github/.github/workflows/_osv-scan.yml@main markdown-lint: name: Markdown Lint needs: changes if: needs.changes.outputs.markdown == 'true' - uses: JacobPEvans/.github/.github/workflows/_markdown-lint.yml@main + uses: JacobPEvans-personal/.github/.github/workflows/_markdown-lint.yml@main file-size: name: File Size needs: changes - uses: JacobPEvans/.github/.github/workflows/_file-size.yml@main + uses: JacobPEvans-personal/.github/.github/workflows/_file-size.yml@main schema-validate: name: Schema Validate 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 }}