Skip to content

Commit b76e2a1

Browse files
authored
Merge pull request github#16752 from kylelaker/patch-2
Fix `pull_request_target` if_merged example
2 parents ecf2bfe + effd62f commit b76e2a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ on:
899899
900900
jobs:
901901
if_merged:
902-
if: github.event.pull_request_target.merged == true
902+
if: github.event.pull_request.merged == true
903903
runs-on: ubuntu-latest
904904
steps:
905905
- run: |

0 commit comments

Comments
 (0)