plengauer / plengauer/abom-http
Autotriage workflow rate limit uses deprecated syntax and is not enforced
Open
- Dominant language
- Shell
- Stars
- 2
- Forks
- 0
- Avg merge
- 11d 21h
- Merged PRs (30d)
- 2
Description
.github/workflows/autotriage.md currently has:
rate-limit:
max: 2
window: 60
Since GitHub Agentic Workflows went GA, this field was renamed/restructured. rate-limit/max is no longer a recognized frontmatter key — the compiler silently discards unknown fields (no warning), so this workflow is currently not rate limited at all.
Please migrate to the current syntax and set it to 3 runs per user per hour:
user-rate-limit:
max-runs-per-window: 3
window: 60
Replace the old rate-limit: block with this, then recompile (gh aw compile) so the generated .lock.yml actually enforces it.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.