Skip to content

Commit 0f0f795

Browse files
committed
Remove all assignment tracking labels
1 parent 704918a commit 0f0f795

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/on-issue-unlabeled.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,13 @@ jobs:
4242
done
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
- name: Remove labels assigned, reminder-sent, pinned, and "FirstTimeCodeContribution"
46+
run: |
47+
set -e
48+
49+
gh issue edit ${{ github.event.issue.number }} --remove-label "📍 Assigned"
50+
gh issue edit ${{ github.event.issue.number }} --remove-label "🔔 reminder-sent"
51+
gh issue edit ${{ github.event.issue.number }} --remove-label "📌 Pinned"
52+
gh issue edit ${{ github.event.issue.number }} --remove-label "FirstTimeCodeContribution"
53+
env:
54+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)