CAP-122: Add GitHub workflow to close new issues missing labels (#22356)
This commit is contained in:
parent
742f4b4330
commit
b55b50b12e
|
|
@ -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 }}
|
||||
Loading…
Reference in New Issue