diff --git a/data/reusables/webhooks/issue_event_api_properties.md b/data/reusables/webhooks/issue_event_api_properties.md index 219bcd3c9a9d..7d4c4715ef79 100644 --- a/data/reusables/webhooks/issue_event_api_properties.md +++ b/data/reusables/webhooks/issue_event_api_properties.md @@ -1,7 +1,7 @@ Key | Type | Description ----|------|------------- | {% ifversion fpt or ghec %} | -`action`|`string` | The action that was performed. Can be one of `opened`, `closed`, `reopened`. +`action`|`string` | The action that was performed. Can be one of `opened`, `closed`, `reopened`, `assigned`, `unassigned`, `labeled`, or `unlabeled`. | {% else %} | `action`|`string` | The action that was performed. Can be one of `opened`, `closed`, `reopened`, `assigned`, `unassigned`, `labeled`, or `unlabeled`. | {% endif %} | diff --git a/data/reusables/webhooks/issue_properties.md b/data/reusables/webhooks/issue_properties.md index 4c814fad561a..ffc10ad7f1db 100644 --- a/data/reusables/webhooks/issue_properties.md +++ b/data/reusables/webhooks/issue_properties.md @@ -2,6 +2,6 @@ | {% ifversion fpt or ghec %} | `assignee`|`object` | The optional user who was assigned or unassigned from the issue. `assignees`|`array` | The optional array of assignee objects detailing the assignees on the issue. -`label`|`object` | The optional label that was added or removed from the issue. -`labels`|`array` | The optional array of label objects describing the labels on the issue. +`label`|`object` | The optional label that was added to or removed from the issue if the action was `labeled` or `unlabeled`. +`labels`|`array` | The optional array of label objects describing the labels on the issue if the action was `labeled` or `unlabeled`. | {% endif %} |