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: The PR body's stated reason for keeping this zizmor ignore doesn't hold for morango. It says the callers this template replaced each carried the same inline ignore. morango's one such caller, call-pull-request-target.yml, had no zizmor comment in its on: block. zizmor isn't wired into this repo at all. Keep the line — byte-identity with the template justifies it on its own — but drop that claim 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