Skip to content

Commit dcbfb0c

Browse files
authored
Fix repository_dispatch syntax (#56499)
1 parent cfd05d7 commit dcbfb0c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/new-release-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: New Release Branch
22

33
on:
44
repository_dispatch:
5-
types: new-release-branch
5+
types: [new-release-branch]
66

77
permissions:
88
contents: read

.github/workflows/nightly.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
# enable users to manually trigger with workflow_dispatch
77
workflow_dispatch: {}
88
repository_dispatch:
9-
types: publish-nightly
9+
types: [publish-nightly]
1010

1111
permissions:
1212
contents: read

.github/workflows/set-version.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Set branch version
22

33
on:
44
repository_dispatch:
5-
types: set-version
5+
types: [set-version]
66

77
permissions:
88
contents: read

.github/workflows/sync-branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Sync branch with master
22

33
on:
44
repository_dispatch:
5-
types: sync-branch
5+
types: [sync-branch]
66
workflow_dispatch:
77
inputs:
88
branch_name:

.github/workflows/twoslash-repros.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
schedule:
88
- cron: '0 8 * * *'
99
repository_dispatch:
10-
types: run-twoslash-repros
10+
types: [run-twoslash-repros]
1111
workflow_dispatch:
1212
inputs:
1313
issue:

0 commit comments

Comments
 (0)