From f66e73fdbb377547e9ec6d3e71b65082b9a4b151 Mon Sep 17 00:00:00 2001 From: Brian Surowiec Date: Thu, 6 May 2021 19:35:51 -0400 Subject: [PATCH] Remove requested_action event type --- content/actions/reference/events-that-trigger-workflows.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/actions/reference/events-that-trigger-workflows.md b/content/actions/reference/events-that-trigger-workflows.md index ee4743fb05..16db121d76 100644 --- a/content/actions/reference/events-that-trigger-workflows.md +++ b/content/actions/reference/events-that-trigger-workflows.md @@ -177,16 +177,16 @@ Runs your workflow anytime the `check_run` event occurs. {% data reusables.devel | Webhook event payload | Activity types | `GITHUB_SHA` | `GITHUB_REF` | | --------------------- | -------------- | ------------ | -------------| -| [`check_run`](/webhooks/event-payloads/#check_run) | - `created`
- `rerequested`
- `completed`
- `requested_action` | Last commit on default branch | Default branch | +| [`check_run`](/webhooks/event-payloads/#check_run) | - `created`
- `rerequested`
- `completed` | Last commit on default branch | Default branch | {% data reusables.developer-site.limit_workflow_to_activity_types %} -For example, you can run a workflow when a check run has been `rerequested` or `requested_action`. +For example, you can run a workflow when a check run has been `rerequested` or `completed`. ```yaml on: check_run: - types: [rerequested, requested_action] + types: [rerequested, completed] ``` #### `check_suite`