fix: migrate ci_dependencies to org-infra reusable workflows - #44
Merged
yvonnedevlinrh merged 1 commit intoSep 3, 2026
Conversation
yvonnedevlinrh
requested review from
jflowers and
marcusburghardt
as code owners
September 2, 2026 17:20
Contributor
Author
CI failures here are inherited from
|
This was referenced Sep 2, 2026
The inline actions/dependency-review-action step hard-failed on every PR to main because the Dependency Graph / GitHub Advanced Security is not enabled on this repo. Delegate to the org-standard reusable callers so CI is soft-gated and no longer blocked. - Replace the inline dependency-review job in ci_dependencies.yml with call_deps_reviewer + call_dependabot_reviewer, pinned to complytime/org-infra at 0c784711 (# v0.7.1), matching ci_security.yml - Keep continue-on-error semantics (via the reusable) so a missing Dependency Graph no longer hard-fails PRs - Deliberately exclude the Dependabot auto-approve/comment jobs (this repo governs org policy; auto-approve is elevated attack surface) - Add .github/dependabot.yml for the github-actions ecosystem - Add openspec change fix-ci-dependencies-reusable-migration Assisted-by: claude-opus Generated with AI assistance (claude-opus)
yvonnedevlinrh
force-pushed
the
opsx/fix-ci-dependencies-reusable-migration
branch
from
September 3, 2026 12:32
6b280e5 to
9e85eaa
Compare
yvonnedevlinrh
deleted the
opsx/fix-ci-dependencies-reusable-migration
branch
September 3, 2026 12:34
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
.github/workflows/ci_dependencies.ymlranactions/dependency-review-actionas an inline step, which hard-failed on every PR tomainbecause the Dependency Graph / GitHub Advanced Security is not enabled on this repo. This migrates the workflow to the org-standardcomplytime/org-infrareusable-caller pattern (matchingci_security.yml/ci_scheduled.yml), soft-gating dependency review so it no longer blocks PRs, and adds agithub-actionsDependabot config.dependency-reviewjob withcall_deps_reviewer(General) andcall_dependabot_reviewer(Dependabot), pinned tocomplytime/org-infra@0c784711…926c9864f027ec565fd7c06a382d80f8 # v0.7.1— the same SHA already used by the security workflows.continue-on-error: true, applied inside the reusable), resolving the hard-fail..github/dependabot.ymlfor thegithub-actionsecosystem only (weekly);go.modis intentionally out of scope.fix-ci-dependencies-reusable-migration(proposal, spec, design, tasks).Related Issues
Review Hints
mainand confirm the Dependency Review check runs without hard-failing (theGeneralcaller job). Locally:yamllint .github/workflows/ci_dependencies.yml .github/dependabot.ymlandmake lintboth pass.call_dependabot_reviewerjob's inner logic is gated ongithub.event.pull_request.user.login == 'dependabot[bot]', so it won't do meaningful work on a human-authored PR — verify by inspecting the reusable rather than expecting it to run on this PR..github/workflows/ci_dependencies.yml(inline → reusable callers),.github/dependabot.yml(new),openspec/changes/fix-ci-dependencies-reusable-migration/*(planning artifacts).ci_security.yml; same adoption is tracked forunbound-force/replicator#38.This PR was generated by /uf.finale (AI-assisted).