Skip to content

Commit 18d023c

Browse files
committed
tweak docs
1 parent 9aaada5 commit 18d023c

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

docs/src/content/docs/reference/triggers.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ on:
1313
types: [opened]
1414
```
1515
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.
1717
18-
## Dispatch Triggers (`workflow_dispatch:`)
18+
### Dispatch Triggers (`workflow_dispatch:`)
1919

2020
You can create manual triggers using `workflow_dispatch:` to run workflows on-demand from the GitHub UI or API.
2121

@@ -36,7 +36,7 @@ on:
3636

3737
See GitHub Docs for more details: [Events that trigger workflows - Schedule](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule).
3838

39-
## Issue Triggers (`issues:`)
39+
### Issue Triggers (`issues:`)
4040
```yaml
4141
on:
4242
issues:
@@ -68,11 +68,11 @@ on:
6868
reaction: "eyes"
6969
```
7070

71-
## Command Triggers (`command:`)
71+
### Command Triggers (`command:`)
7272

7373
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.
7474

75-
## Label Filtering (`names:`)
75+
### Label Filtering (`names:`)
7676

7777
An additional kind of issue and pull request trigger is available in GitHub Agentic Workflows to specific label names using the `names:` field:
7878

@@ -85,7 +85,7 @@ on:
8585

8686
This filtering is especially useful for [LabelOps workflows](/gh-aw/guides/labelops/) where specific labels trigger different automation behaviors.
8787

88-
## Reactions (`reaction:`)
88+
### Reactions (`reaction:`)
8989

9090
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:
9191

@@ -116,7 +116,7 @@ The `add_reaction` job exposes the following outputs for use by downstream jobs:
116116
- `rocket` (🚀)
117117
- `eyes` (👀)
118118

119-
## Stop After Configuration (`stop-after:`)
119+
### Stop After Configuration (`stop-after:`)
120120

121121
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:
122122

0 commit comments

Comments
 (0)