Skip to content

Commit

Permalink
chore: fix automatic labelling workflow (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley authored Nov 12, 2024
1 parent cebe316 commit 76a5971
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/issue-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Update labels on issues with OP response
on:
issue_comment:
types: [created]
issues:
types: [opened]

jobs:
label-op-response:
Expand All @@ -25,11 +27,11 @@ jobs:
labels: 'Needs Attention'
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Remove 'blocked customer-response' label if OP responded
- name: Remove 'blocked customer response' label if OP responded
if: env.op_comment == 'true'
uses: actions-ecosystem/action-remove-labels@v1
with:
labels: 'blocked: customer-response'
labels: 'blocked: customer response'
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
label-new-issue:
Expand Down

0 comments on commit 76a5971

Please sign in to comment.