Skip to content

Commit 690c5bb

Browse files
authored
Fix needs_release_notes.yml workflow (#3824)
Remove a leading "-" character that violated github-actions-flavored yaml syntax. This should prevent email spam from failing workflows, and also prevent the workflow itself from failing.
1 parent 79d552a commit 690c5bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/needs_release_notes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: "Pull Request Labeler"
22

33
on:
4-
- pull_request_target:
5-
types: [opened, reopened, synchronize]
4+
pull_request_target:
5+
types: [opened, reopened, synchronize]
66

77
jobs:
88
labeler:

0 commit comments

Comments
 (0)