|
13 | 13 | types: [opened] |
14 | 14 | ``` |
15 | 15 |
|
16 | | -GitHub Agentic Workflows supports all standard GitHub Actions triggers plus additional enhancements for cost control, user feedback, and advanced filtering. |
| 16 | +GitHub Agentic Workflows supports all standard GitHub Actions triggers plus additional enhancements for reactions, cost control, and advanced filtering. |
17 | 17 |
|
18 | | -## Dispatch Triggers (`workflow_dispatch:`) |
| 18 | +### Dispatch Triggers (`workflow_dispatch:`) |
19 | 19 |
|
20 | 20 | You can create manual triggers using `workflow_dispatch:` to run workflows on-demand from the GitHub UI or API. |
21 | 21 |
|
|
36 | 36 |
|
37 | 37 | See GitHub Docs for more details: [Events that trigger workflows - Schedule](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule). |
38 | 38 |
|
39 | | -## Issue Triggers (`issues:`) |
| 39 | +### Issue Triggers (`issues:`) |
40 | 40 | ```yaml |
41 | 41 | on: |
42 | 42 | issues: |
|
68 | 68 | reaction: "eyes" |
69 | 69 | ``` |
70 | 70 |
|
71 | | -## Command Triggers (`command:`) |
| 71 | +### Command Triggers (`command:`) |
72 | 72 |
|
73 | 73 | An additional kind of trigger called `command:` is supported, see [Command Triggers](/gh-aw/reference/command-triggers/) for special `/my-bot` triggers and context text functionality. |
74 | 74 |
|
75 | | -## Label Filtering (`names:`) |
| 75 | +### Label Filtering (`names:`) |
76 | 76 |
|
77 | 77 | An additional kind of issue and pull request trigger is available in GitHub Agentic Workflows to specific label names using the `names:` field: |
78 | 78 |
|
|
85 | 85 |
|
86 | 86 | This filtering is especially useful for [LabelOps workflows](/gh-aw/guides/labelops/) where specific labels trigger different automation behaviors. |
87 | 87 |
|
88 | | -## Reactions (`reaction:`) |
| 88 | +### Reactions (`reaction:`) |
89 | 89 |
|
90 | 90 | An additional option `reaction:` is available within the `on:` section to enable emoji reactions on the triggering GitHub item (issue, PR, comment, discussion) to provide visual feedback about the workflow status: |
91 | 91 |
|
@@ -116,7 +116,7 @@ The `add_reaction` job exposes the following outputs for use by downstream jobs: |
116 | 116 | - `rocket` (🚀) |
117 | 117 | - `eyes` (👀) |
118 | 118 |
|
119 | | -## Stop After Configuration (`stop-after:`) |
| 119 | +### Stop After Configuration (`stop-after:`) |
120 | 120 |
|
121 | 121 | An additional configuration option `stop-after:` is available within the `on:` section as a cost-control measure to automatically disable workflow triggering after a deadline: |
122 | 122 |
|
|
0 commit comments