Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# actionlint's rules for this repository. See https://github.com/rhysd/actionlint/blob/main/docs/config.md
paths:
.github/workflows/**/*.yml:
ignore:
# GitHub's self-repository `uses: $/...` syntax (July 2026) is what zizmor's
# self-repository audit asks for in place of `./...`, and what our reusable-workflow
# calls use. actionlint 1.7.12 predates it and has no release that knows it
# (rhysd/actionlint#711); drop this once one does.
- 'reusable workflow call "\$/.+" at "uses" is not following the format'
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions: {}
jobs:
security:
name: Security
uses: ./.github/workflows/security.yml
uses: $/.github/workflows/security.yml
permissions:
contents: read
security-events: write
Expand Down
2 changes: 1 addition & 1 deletion seed/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions: {}
jobs:
security:
name: Security scan
uses: ./.github/workflows/security.yml
uses: $/.github/workflows/security.yml

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Ship the actionlint ignore with the seed

When seed/ is staged as a standalone generated repository and actionlint 1.7.12 runs, this new $/ call is rejected because the commit adds the required ignore only at .github/actionlint.yaml; there is no seed/.github/actionlint.yaml, and the GitHub-infra copy list in prompts/seed-cli.md would not copy one anyway. Add the config to the seed and include it in that copy list so generated CLIs do not fail their Actions audit.

AGENTS.md reference: AGENTS.md:L47-L54

Useful? React with 👍 / 👎.

permissions:
contents: read
security-events: write
Expand Down
Loading