feat: absorb the dependency-gate action (re-target to master) - #3
Merged
Merged
Conversation
Moves velocity-exchange/dependency-gate in as dependency-gate/, so the org's
shared CI lives in one protected repo instead of two. It is a composite action
with a Python parser and no build artifact, so it relocates as plain files.
Relocation fixes, since everything in it assumed the repo root:
- `uses: ./` -> `uses: ./dependency-gate` (3 call sites)
- `lockfiles:` fixture paths gain the dependency-gate/ prefix
- `python3 tests/test_parser.py` and `open("action.yml")` gain the prefix;
test_parser.py itself resolves fixtures from __file__, so it needed none
- its `push:` trigger was `[main]`; this repo's default branch is `master`
- both workflows renamed to dependency-gate-{test,selfgate}.yml and given
distinct `name:`s, now that they share a repo
The action itself is unchanged; it locates its parser via $GITHUB_ACTION_PATH,
which already works from a subdirectory.
Verified: the full parser suite passes when invoked the way CI invokes it, and
action.yml still satisfies the contract its own CI asserts (composite, required
lockfiles input, the three outputs, every step bash, no Actions expressions
interpolated into run bodies).
Note the test workflow now carries paths filters. YAML anchors were NOT used to
share them - GitHub Actions does not support anchors, and a workflow using them
fails to parse.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
jt-lumen
requested review from
0xahzam,
ChesterSim,
ChewingGlass,
csadminlc and
noah-velocity-admin
as code owners
September 1, 2026 04:22
ChesterSim
approved these changes
Sep 1, 2026
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.
Re-lands #2. That PR was stacked on #1 and merged into its base branch, but #1 merged into
masterfirst — so thedependency-gate/files ended up stranded on the mergeddocs/trim-readmebranch and never reachedmaster. Same commit, cherry-picked ontomaster.Content is unchanged from #2. Re-verified on this branch: the parser suite passes invoked as CI invokes it, and all four workflows parse.