CAP-122: Add GitHub workflow to close new issues missing labels (#22356)

This commit is contained in:
Jeremy Stretch 2026-06-02 10:43:52 -04:00 committed by GitHub
parent 742f4b4330
commit b55b50b12e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 0 deletions

21
.github/workflows/no-blank-issue.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Enforce issue templates
on:
issues:
types:
- opened
- reopened
permissions:
issues: write
jobs:
no-blank-issue:
name: No Blank Issue
runs-on: ubuntu-slim
steps:
- name: Close new issues without labels
uses: ldez/no-blank-issue@800e2d0c81c9e0ca7bdb58f3e7480a74602d91e0 # v1.2.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}