Skip to content

Commit 76a5971

Browse files
chore: fix automatic labelling workflow (#430)
1 parent cebe316 commit 76a5971

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/issue-labels.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Update labels on issues with OP response
33
on:
44
issue_comment:
55
types: [created]
6+
issues:
7+
types: [opened]
68

79
jobs:
810
label-op-response:
@@ -25,11 +27,11 @@ jobs:
2527
labels: 'Needs Attention'
2628
env:
2729
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
28-
- name: Remove 'blocked customer-response' label if OP responded
30+
- name: Remove 'blocked customer response' label if OP responded
2931
if: env.op_comment == 'true'
3032
uses: actions-ecosystem/action-remove-labels@v1
3133
with:
32-
labels: 'blocked: customer-response'
34+
labels: 'blocked: customer response'
3335
env:
3436
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
3537
label-new-issue:

0 commit comments

Comments
 (0)