Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit b10dab6

Browse files
authored
Merge pull request #573 from datafold/awaiting-response-to-triage
Create label-update_awaiting-response-to-triage.yml
2 parents 53f84c2 + f9af8a2 commit b10dab6

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# if a comment is added to an issue awaiting response, remove the "awaiting_response" label and add a "triage" label
2+
3+
name: Awaiting Response --> Triage Label
4+
5+
on: issue_comment
6+
7+
defaults:
8+
run:
9+
shell: bash
10+
11+
permissions:
12+
issues: write
13+
14+
jobs:
15+
triage_label:
16+
if: contains(github.event.issue.labels.*.name, 'awaiting_response')
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: initial labeling
20+
uses: andymckay/labeler@master
21+
with:
22+
add-labels: "triage"
23+
remove-labels: "awaiting_response"

0 commit comments

Comments
 (0)