chore(ci): update CI/CD workflows and permissions#5
Conversation
Add AI manifest, Trustfile, Dustfile, and assail recipe as part of the Floor Raise campaign to establish baseline tooling across all repos. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Describes the consent pipeline: intsoc-transactor (check/fix/submit) -> consent-aware-http (consent middleware, planned) -> branch-newspaper (publication platform). Documents what each component does and how they connect. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 5aa86ea05f
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| # Find any uses: lines that don't have @SHA format | ||
| # Pattern: uses: owner/repo@<40-char-hex> | ||
| unpinned=$(grep -rn "uses:" .github/workflows/ | \ | ||
| unpinned=$(grep -rnE "^[[:space:]]+uses:" .github/workflows/ | \ |
There was a problem hiding this comment.
Detect
- uses: entries in action-pinning check
Update the grep pattern so it also matches one-line step syntax (- uses: ...). The new regex ^[[:space:]]+uses: only sees lines where uses: is on its own line, so unpinned actions written in the common shorthand form can bypass this linter and the workflow may report “All actions are SHA-pinned” incorrectly.
Useful? React with 👍 / 👎.
Updated workflow files, added security checks, improved permissions