ci: Repoint reusable-workflow refs to rossoctl/.github - #51
Conversation
GitHub Actions does not follow org renames for `uses:` references, so the kagenti/.github reusable-workflow refs fail to resolve and every run concludes as failure before any job is created. Repoint all three to rossoctl/.github, keeping the same pinned SHAs (verified present in the renamed repo). Also update the stale org path in the self-assign comments. Assisted-By: Claude Code (Anthropic AI) <noreply@anthropic.com> Signed-off-by: Gloire Rubambiza <gloire@ibm.com>
clawgenti
left a comment
There was a problem hiding this comment.
This PR updates workflow references from to in several GitHub Actions workflow files. All changes are consistent and correctly migrated. All checks pass. Ready for human review.
Reviewed by clawgenti using the github-pr-review skill
clawgenti
left a comment
There was a problem hiding this comment.
This PR updates workflow references from to in several GitHub Actions workflow files. All changes are consistent and correctly migrated. All checks pass. Ready for human review.\n---\nReviewed by clawgenti using the github-pr-review skill\n
clawgenti
left a comment
There was a problem hiding this comment.
This PR updates workflow references from to in several GitHub Actions workflow files. All changes are consistent and correctly migrated. All checks pass. Ready for human review.\n---\nReviewed by clawgenti using the github-pr-review skill\n
clawgenti
left a comment
There was a problem hiding this comment.
This PR updates workflow references from kagenti to rossoctl in several GitHub Actions workflow files. All changes are consistent and correctly migrated. All checks pass. Ready for human review.
Reviewed by clawgenti using the github-pr-review skill
|
[ |
| permissions: | ||
| pull-requests: read | ||
| uses: kagenti/.github/.github/workflows/pr-verifier-required.yml@5df2608afc813a6ec4a002a9ea05640863549122 # main, 2026-06-25 | ||
| uses: rossoctl/.github/.github/workflows/pr-verifier-required.yml@5df2608afc813a6ec4a002a9ea05640863549122 # main, 2026-06-25 |
There was a problem hiding this comment.
Updated path to reference organization.
| contents: read | ||
|
|
||
| uses: kagenti/.github/.github/workflows/add-to-project.yml@99700ebe858a1bc566492b1de9aea6e764ee226f # 2026-05-05 | ||
| uses: rossoctl/.github/.github/workflows/add-to-project.yml@99700ebe858a1bc566492b1de9aea6e764ee226f # 2026-05-05 |
There was a problem hiding this comment.
Updated path to reference organization.
| # | ||
| # Thin caller for the org-wide reusable self-assign workflow. | ||
| # Configuration and defaults are managed centrally in kagenti/.github. | ||
| # Configuration and defaults are managed centrally in rossoctl/.github. |
There was a problem hiding this comment.
Updated comment to reflect new organization.
| # Configuration and defaults are managed centrally in rossoctl/.github. | ||
| # | ||
| # Reference: https://github.com/kagenti/.github/blob/main/.github/workflows/self-assign-reusable.yml | ||
| # Reference: https://github.com/rossoctl/.github/blob/main/.github/workflows/self-assign-reusable.yml |
There was a problem hiding this comment.
Updated reference link to organization.
| jobs: | ||
| self-assign: | ||
| uses: kagenti/.github/.github/workflows/self-assign-reusable.yml@99700ebe858a1bc566492b1de9aea6e764ee226f # 2026-05-05 | ||
| uses: rossoctl/.github/.github/workflows/self-assign-reusable.yml@99700ebe858a1bc566492b1de9aea6e764ee226f # 2026-05-05 |
There was a problem hiding this comment.
Updated path to reference organization.
What
Repoint the three reusable-workflow references from the old org path (
kagenti/.github) to the current one (rossoctl/.github), keeping the same pinned SHAs.pr-verifier.ymlpr-verifier-required.ymlproject.ymladd-to-project.ymlself-assign.ymlself-assign-reusable.ymlWhy
GitHub Actions does not follow org renames for
uses:references. Thekagenti/.github/...refs no longer resolve, so every run of these workflows concludes asfailurebefore any job is created.Safety
99700eb...,5df2608...) were verified to exist in the renamedrossoctl/.githubrepo — they are the same commits, preserved through the rename. The refs stay SHA-pinned; no version bump.kagenti/.githuborg path in theself-assign.ymlheader comments (documentation only).Fixes rossoctl/rossoctl#2296
Assisted-By: Claude Code