[BUG] Once "Turn off LCD" button is pressed, you will need to press twice to get the ability to scroll. #91
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" | |
- "bug" | |
- "work-in-progress" | |
- "Needs: Discussion" | |
- "Needs: Documentation" | |
- "Needs: More Data" | |
- "Needs: Patch" | |
- "Needs: Testing" | |
- "Needs: Work" | |
steps: | |
- uses: actions/checkout@main | |
- name: Remove Labels | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
github_token: ${{ github.token }} | |
labels: ${{ matrix.label }} |