From 46a3f68002fa4cf82507f860a9b84f43b4abe4e8 Mon Sep 17 00:00:00 2001 From: Twenty Panda Date: Mon, 22 Jul 2024 12:19:31 +0200 Subject: [PATCH] user: actions: add on.issues --- docs/user/actions.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/user/actions.md b/docs/user/actions.md index 23ec2301..11ec6665 100644 --- a/docs/user/actions.md +++ b/docs/user/actions.md @@ -556,6 +556,28 @@ on: > **NOTE:** combining `tags` with `paths` or `branches` is unspecified. +### `on.issues` + +Trigger the workflow when an event happens on an issue or a pull request, as +specified with the `types` event parameter. It defaults to `[opened, edited]` if not specified. + +- `opened` the issue or pull request was created. +- `reopened` the closed issue or pull request was reopened. +- `closed` the issue or pull request was closed or merged. +- `labeled` a label was added. +- `unlabeled` a label was removed. +- `assigned` an assignee was added. +- `unassigned` an assignee was removed. +- `edited` the body, title or comments of the issue or pull request were modified. + +```yaml +on: + issues: + types: [opened, edited] +``` + +[Check out the example](https://code.forgejo.org/forgejo/end-to-end/src/branch/main/actions/example-issue/.forgejo/workflows/test.yml). + ### `on.pull_request` Trigger the workflow when an event happens on a pull request, as