From 30f532f401f4d9dff56c53443a295101169aebf9 Mon Sep 17 00:00:00 2001 From: jmeridth Date: Tue, 10 Mar 2026 02:19:15 -0500 Subject: [PATCH] fix(ci): update ospo-reusable-workflows org path in GitHub Actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What Updated all references to ospo-reusable-workflows from the `github` org to the `github-community-projects` org across three workflow files: auto-labeler, pr-title, and release. ## Why The ospo-reusable-workflows repository was moved from the `github` org to the `github-community-projects` org. The old references would cause workflow failures since the repository no longer exists at the previous path. ## Notes - Pinned commit SHAs were intentionally left unchanged — the SHA references the same commit in the transferred repo - All four `uses:` directives across the three workflow files were updated - Updated pull request template, trimmed it a bit Signed-off-by: jmeridth --- .github/pull_request_template.md | 5 ----- .github/workflows/auto-labeler.yml | 2 +- .github/workflows/pr-title.yml | 2 +- .github/workflows/release.yml | 4 ++-- 4 files changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 5c6b55f..39e805e 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -20,8 +20,3 @@ examples: "feat: add new logger" or "fix: remove unused imports" - [ ] If documentation is needed for this change, has that been included in this pull request - [ ] run `npm run lint` and fix any linting issues that have been introduced - [ ] run `npm run test` and run tests -- [ ] If publishing new data to the public (scorecards, security scan results, code quality results, live dashboards, etc.), please request review from `@jeffrey-luszcz` - -### Reviewer - -- [ ] Label as either `bug`, `documentation`, `enhancement`, `infrastructure`, `maintenance`, or `breaking` diff --git a/.github/workflows/auto-labeler.yml b/.github/workflows/auto-labeler.yml index 39314f6..009e628 100644 --- a/.github/workflows/auto-labeler.yml +++ b/.github/workflows/auto-labeler.yml @@ -14,7 +14,7 @@ jobs: permissions: contents: read pull-requests: write - uses: github/ospo-reusable-workflows/.github/workflows/auto-labeler.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71 + uses: github-community-projects/ospo-reusable-workflows/.github/workflows/auto-labeler.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71 with: config-name: release-drafter.yml secrets: diff --git a/.github/workflows/pr-title.yml b/.github/workflows/pr-title.yml index ac74638..ff3e6f9 100644 --- a/.github/workflows/pr-title.yml +++ b/.github/workflows/pr-title.yml @@ -19,6 +19,6 @@ jobs: contents: read pull-requests: read statuses: write - uses: github/ospo-reusable-workflows/.github/workflows/pr-title.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71 + uses: github-community-projects/ospo-reusable-workflows/.github/workflows/pr-title.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71 secrets: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 729495c..1437620 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: permissions: contents: write pull-requests: read - uses: github/ospo-reusable-workflows/.github/workflows/release.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71 + uses: github-community-projects/ospo-reusable-workflows/.github/workflows/release.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71 with: publish: true release-config-name: release-drafter.yml @@ -30,7 +30,7 @@ jobs: packages: write id-token: write attestations: write - uses: github/ospo-reusable-workflows/.github/workflows/release-image.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71 + uses: github-community-projects/ospo-reusable-workflows/.github/workflows/release-image.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71 with: image-name: ${{ github.repository }} full-tag: ${{ needs.release.outputs.full-tag }}