[BUG] Marlin 2.1.x won't build with BTT_TFT35_SPI_V1_0 after using BigTreeTech repository instructions #3210
This file contains 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-latest | |
strategy: | |
matrix: | |
label: | |
- "S: Don't Merge" | |
- "S: Hold for 2.1" | |
- "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@v3 | |
- name: Remove Labels | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
github_token: ${{ github.token }} | |
labels: ${{ matrix.label }} |