Skip to content
Merged
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
31 changes: 15 additions & 16 deletions .github/workflows/automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,33 @@
#
# Caller template: copy this file to .github/workflows/automation.yml in a consumer repo.
# No edits are needed - the on: block is the exhaustive union of every enabled automation.

name: Automation
on:
pull_request_target:
types:
- review_requested
- labeled
- opened
- assigned
- unassigned
- closed
- reopened
- edited
- review_request_removed
on: # zizmor: ignore[dangerous-triggers]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

nitpick: Both PR-body rationales for this ignore line are false in Studio.

  • "the callers this template replaced each carried the same inline ignore" — none of the seven callers deleted in Replace the seven automation callers with the central entry point #6137 contain a zizmor comment. git log --all -S zizmor -- .github/ returns only this commit, so zizmor runs nowhere here and the ignore is inert.
  • "a repo on a newer pin rewrites the file on its next pre-commit run" — .pre-commit-config.yaml has no yamlfmt hook.

Keep the line for template parity. Drop both rationales from the PR body.

issue_comment:
types:
- created
issues:
types:
- assigned
- labeled
- opened
- reopened
- labeled
- unlabeled
- assigned
- unassigned
- unlabeled
pull_request_review_comment:
types:
- created
pull_request_target:
types:
- assigned
- closed
- edited
- labeled
- opened
- reopened
- review_request_removed
- review_requested
- unassigned
schedule:
- cron: 1 0 * * 1
workflow_dispatch: {}
Expand Down
Loading