[FR] (feature summary)modify this to be compatible with HC32F460 of a Tenlog D3 pro (Paid Work) #60
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# clean-closed.yml | |
# Remove obsolete labels when an Issue or PR is closed | |
# | |
name: Clean Closed | |
on: | |
pull_request: | |
types: [closed] | |
issues: | |
types: [closed] | |
jobs: | |
remove_label: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
label: | |
- "S: Don't Merge" | |
- "S: Hold for 2.1" | |
- "S: Please Merge" | |
- "S: Please Test" | |
- "help wanted" | |
- "Bug: Potential ?" | |
- "Needs: Discussion" | |
- "Needs: Documentation" | |
- "Needs: More Data" | |
- "Needs: Patch" | |
- "Needs: Testing" | |
- "Needs: Work" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Remove Labels | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
github_token: ${{ github.token }} | |
labels: ${{ matrix.label }} |