Update aegis_description with LED strips #122
Workflow file for this run
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
| name: PR checklist enforcement | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| workflow_dispatch: | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| checklist: | |
| name: PR Checklist | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fail if PR checklist is incomplete | |
| uses: mheap/require-checklist-action@v2.5.0 | |
| with: | |
| requireChecklist: true | |
| checklistRegex: '^- \[( |x|X)\]' | |
| failIfNoChecklist: true |