Chore: remove redundant workflow copies#102
Merged
tykeal merged 1 commit intoJun 5, 2026
Merged
Conversation
Remove workflow copies now maintained centrally in the .github repository. An organisation-level Ruleset will enforce the canonical versions, making these per-repository copies redundant. Removed: - autolabeler.yaml - semantic-pull-request.yaml - sha-pinned-actions.yaml Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Matthew Watkins <mwatkins@linuxfoundation.org>
There was a problem hiding this comment.
Pull request overview
This PR removes three repository-local GitHub Actions workflows that are intended to be maintained centrally in the organisation’s .github repository, in preparation for enforcing them via an organisation-level Ruleset (required workflows).
Changes:
- Removed the local SHA-pinned actions audit workflow.
- Removed the local semantic pull request title validation workflow.
- Removed the local autolabeler workflow.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/sha-pinned-actions.yaml | Deleted the repo-local SHA pinning audit workflow in favor of an org-managed canonical workflow. |
| .github/workflows/semantic-pull-request.yaml | Deleted the repo-local semantic PR enforcement workflow in favor of an org-managed canonical workflow. |
| .github/workflows/autolabeler.yaml | Deleted the repo-local autolabeler workflow in favor of an org-managed canonical workflow. |
Comments suppressed due to low confidence (3)
.github/workflows/sha-pinned-actions.yaml:1
- Deleting this workflow will stop SHA-pinning audits for this repository until the organisation-level Ruleset/required workflow is enabled and running successfully here. That creates a potential security/compliance gap (and may break any existing required status checks) if this PR merges before the org-level enforcement is in place.
.github/workflows/semantic-pull-request.yaml:1 - Removing this workflow disables semantic PR title enforcement in this repository until the canonical organisation-level workflow is active. If branch protections or contributor expectations rely on this check today, merging this PR before the org-level Ruleset is enabled will cause a gap (and may block merges if the required check name disappears).
.github/workflows/autolabeler.yaml:1 - Deleting this workflow removes automatic PR labeling for this repository. Until the organisation-level Ruleset/required workflow is enabled, labels will no longer be applied (which can impact triage automation or release tooling if any relies on labels).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
tykeal
approved these changes
Jun 5, 2026
tykeal
left a comment
Contributor
There was a problem hiding this comment.
Auto-approved by dependamerge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Removes the per-repository copies of workflow(s) now maintained canonically in the organisation
.githubrepository:These local copies are redundant ahead of enabling an organisation-level Ruleset that enforces the canonical versions centrally.
Co-Authored-By: Claude noreply@anthropic.com