Skip to content

Commit c644fa0

Browse files
Fix invalid syntax for pull_request_target example (#1890)
Co-authored-by: Sarah Edwards <skedwards88@github.com>
1 parent 5b64ce8 commit c644fa0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

content/actions/reference/events-that-trigger-workflows.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,8 @@ By default, a workflow only runs when a `pull_request_target`'s activity type is
593593
For example, you can run a workflow when a pull request has been `assigned`, `opened`, `synchronize`, or `reopened`.
594594

595595
```yaml
596-
on: pull_request_target
596+
on:
597+
pull_request_target:
597598
types: [assigned, opened, synchronize, reopened]
598599
```
599600

0 commit comments

Comments
 (0)