add LPC1768 OR LPC1769 capability for board that can have either #4202
Workflow file for this run
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-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 }} |