chore(workflows): delete leftover pr-validation.yml - #192
Merged
Conversation
PR #188 renamed pr-validation.yml -> pr-check.yml and dropped the auto-bump job, but the old file was never deleted. This commit removes the leftover. The old file had: - name: "PR Validation" (not the [<type>] standard) - an auto-bump job that called n3ary/actions/.github/actions/version-bump@v22 - contents: write permission for the auto-bump to push commits - a dependency on a workflow (pr-validation.yml@v22) that has since been superseded by pr-check.yml@v23 pr-check.yml covers the same triggers (pull_request) and is the canonical PR check workflow for this repo. The old file's removal is a no-op for branch protection (no consumer references its name: "PR Validation" check explicitly - the only check it contributed was the auto-bump job, which we no longer need). Refs: n3ary/standards#22
ciotlosm
enabled auto-merge (squash)
July 11, 2026 13:15
auto-merge was automatically disabled
July 11, 2026 13:26
Pull request was closed
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.
Summary
PR #188 renamed
pr-validation.yml->pr-check.ymland dropped the auto-bump job, but the old file was never deleted. This PR removes the leftover.What was in the old file
name: "PR Validation"(not the[<type>] <subject> (<trigger>)standard)auto-bumpjob that calledn3ary/actions/.github/actions/version-bump@v22contents: writepermission for the auto-bump to push commitspr-validation.yml@v22, superseded bypr-check.yml@v23Why this is a no-op
The old file's only non-shared job was the
auto-bumpjob, which is no longer needed (n3ary/release-bot handles version bumps on PR merge). Branch protection doesn't reference the workflow by filename - it references checks by name, andpr-check.yml(the new file) already provides the shared validation that was the main reason for keeping the file.Refs: n3ary/standards#22