Update remove labels on close workflow - Added more labels that should be removed - Included PRs and their labels to be auto-removed

26093c1ae4ceb4a03b81ce3f37ee26780bb5badd

Wolfsblvt <wolfsblvt@gmail.com>

1 files changed, +7 -2Ignore whitespace
.github/workflows/manage-pending-labels-closed.yml β†’ .github/workflows/remove-pending-labels-on-close.yml+7 -2
@@ -1,17 +1,22 @@
1# When a new comment is added to an issue, if it had the Stale or Awaiting User Response labels, then those labels will be removed1# When a new comment is added to an issue, if it had the Stale or Awaiting User Response labels, then those labels will be removed
22
3# πŸ€– Issues Helper
4# https://github.com/marketplace/actions/issues-helper
5
3name: 🎯 Remove Pending Labels on Close6name: 🎯 Remove Pending Labels on Close
4on:7on:
5 issues:8 issues:
6 types: [closed]9 types: [closed]
10 pull_request:
11 types: [closed]
7jobs:12jobs:
8 remove-labels:13 remove-labels:
9 runs-on: ubuntu-latest14 runs-on: ubuntu-latest
10 steps:15 steps:
11 - name: Remove Labels when Closed16 - name: Remove Labels when Closed
12 uses: actions-cool/issues-helper@v217 uses: actions-cool/issues-helper@v3
13 with:18 with:
14 actions: remove-labels19 actions: remove-labels
15 token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}20 token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
16 issue-number: ${{ github.event.issue.number }}21 issue-number: ${{ github.event.issue.number }}
17 labels: '🚏 Awaiting User Response,⚰️ Stale,πŸ‘€ Awaiting Maintainer Response'
17 \ No newline at end of file \ No newline at end of file
22 labels: '🚏 Awaiting User Response,πŸ§‘β€πŸ’» In Progress,πŸ“Œ Keep Open,🚫 Merge Conflicts,πŸ”¬ Needs Testing,πŸ”¨ Needs Work,⚰️ Stale,β›” Waiting For External/Upstream'