ci: standard validation pipeline (shellcheck/json + security scanners + dependabot)#25
Merged
Merged
Conversation
… + dependabot) Integrates the existing validate/shellcheck workflow into the standardized pipeline (no duplication) and adds the shared security scanners: - ci.yml: SHA-pin checkout + persist-credentials: false, add concurrency, keep the existing structural validation (manifests/versions/skills/agents/hooks), add a parse-every-JSON step, broaden shellcheck to all *.sh (severity=error), and add a `CI Passed` aggregator over [validate, shellcheck]. - secret-scan.yml: gitleaks binary (free MIT build, not the licensed action). - actions-lint.yml + zizmor.yml: workflow security audit (path-filtered). - dependabot.yml: github-actions ecosystem only (weekly). All actions are SHA-pinned; least-privilege permissions throughout. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Standardizes this repo's CI to match the shared
Ixpipeline. This repo already had avalidate+shellcheckworkflow; it is integrated, not duplicated.Changed
.github/workflows/ci.yml— kept the existing structural validation (manifest JSON viajq, plugin/marketplace version consistency, expected skills/agents/hooks). Hardened + extended:persist-credentials: false; addedconcurrency.JSON.parses every committed*.json(manifests + fixtures), excludingnode_modules/dist/.git.shellcheckfromhooks/*.sh test-local.shto all committed*.sh(hooks, libs, installers, tests), scoped to--severity=error.CI Passedaggregator over[validate, shellcheck]for a stable required-status-check context.Added
.github/workflows/secret-scan.yml— gitleaks binary (free MIT build, not the licensed org action), full-history scan..github/workflows/actions-lint.yml+.github/zizmor.yml— zizmor workflow security audit (path-filtered to workflow changes)..github/dependabot.yml—github-actionsecosystem only (weekly); no package manager in this repo.Notes
permissions;persist-credentials: falseon all checkouts.🤖 Generated with Claude Code