Browse Source

Remove one label at a time

vanilla_fb_2.0.x
Scott Lahteine 3 years ago
parent
commit
19b94ec325
  1. 27
      .github/workflows/clean-closed.yml

27
.github/workflows/clean-closed.yml

@ -14,20 +14,25 @@ on:
jobs:
remove_label:
runs-on: ubuntu-latest
strategy:
matrix:
label:
- "S: Don't Merge"
- "S: Please Merge"
- "S: Please Test"
- "help wanted"
- "Needs: Discussion"
- "Needs: Documentation"
- "Needs: More Data"
- "Needs: Patch"
- "Needs: Testing"
- "Needs: Work"
steps:
- uses: actions/checkout@v2
- name: Remove Labels
uses: actions-ecosystem/action-remove-labels@v1
with:
github_token: ${{ github.token }}
labels: |
S: Don't Merge
S: Please Merge
S: Please Test
help wanted
Needs: Discussion
Needs: Documentation
Needs: More Data
Needs: Patch
Needs: Testing
Needs: Work
labels: ${{ matrix.label }}

Loading…
Cancel
Save