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>
…nsafe_code), CODE_OF_CONDUCT, CONTRIBUTING - Add/fix SPDX-License-Identifier headers (AGPL→PMPL where needed) - SHA-pin all GitHub Actions to commit hashes - Add #![forbid(unsafe_code)] to safe Rust crates - Add CODE_OF_CONDUCT.md (Contributor Covenant v2.1) - Add CONTRIBUTING.md (standard template) 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: b0fc751d14
ℹ️ 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".
| if [ $failed -eq 1 ]; then | ||
| echo "Add 'permissions: read-all' at workflow level" | ||
| echo "Add 'permissions: | ||
| contents: read' at workflow level" |
There was a problem hiding this comment.
Re-indent permissions hint inside run block
The inserted line contents: read' at workflow level" is dedented to column 1, which prematurely terminates the run: | block and makes the workflow YAML invalid; parsing .github/workflows/workflow-linter.yml now fails before any jobs can start. This breaks the workflow linter entirely until that line is indented to the same level as the surrounding shell script text.
Useful? React with 👍 / 👎.
No description provided.