Skip to content

Commit 30f532f

Browse files
committed
fix(ci): update ospo-reusable-workflows org path in GitHub Actions
## 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 <jmeridth@gmail.com>
1 parent 9974d39 commit 30f532f

4 files changed

Lines changed: 4 additions & 9 deletions

File tree

.github/pull_request_template.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,3 @@ examples: "feat: add new logger" or "fix: remove unused imports"
2020
- [ ] If documentation is needed for this change, has that been included in this pull request
2121
- [ ] run `npm run lint` and fix any linting issues that have been introduced
2222
- [ ] run `npm run test` and run tests
23-
- [ ] If publishing new data to the public (scorecards, security scan results, code quality results, live dashboards, etc.), please request review from `@jeffrey-luszcz`
24-
25-
### Reviewer
26-
27-
- [ ] Label as either `bug`, `documentation`, `enhancement`, `infrastructure`, `maintenance`, or `breaking`

.github/workflows/auto-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
contents: read
1616
pull-requests: write
17-
uses: github/ospo-reusable-workflows/.github/workflows/auto-labeler.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
17+
uses: github-community-projects/ospo-reusable-workflows/.github/workflows/auto-labeler.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
1818
with:
1919
config-name: release-drafter.yml
2020
secrets:

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
contents: read
2020
pull-requests: read
2121
statuses: write
22-
uses: github/ospo-reusable-workflows/.github/workflows/pr-title.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
22+
uses: github-community-projects/ospo-reusable-workflows/.github/workflows/pr-title.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
2323
secrets:
2424
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
permissions:
1818
contents: write
1919
pull-requests: read
20-
uses: github/ospo-reusable-workflows/.github/workflows/release.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
20+
uses: github-community-projects/ospo-reusable-workflows/.github/workflows/release.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
2121
with:
2222
publish: true
2323
release-config-name: release-drafter.yml
@@ -30,7 +30,7 @@ jobs:
3030
packages: write
3131
id-token: write
3232
attestations: write
33-
uses: github/ospo-reusable-workflows/.github/workflows/release-image.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
33+
uses: github-community-projects/ospo-reusable-workflows/.github/workflows/release-image.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
3434
with:
3535
image-name: ${{ github.repository }}
3636
full-tag: ${{ needs.release.outputs.full-tag }}

0 commit comments

Comments
 (0)