From b55b50b12e0c6d378c15888b404a037c5b9f150d Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 2 Jun 2026 10:43:52 -0400 Subject: [PATCH] CAP-122: Add GitHub workflow to close new issues missing labels (#22356) --- .github/workflows/no-blank-issue.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/no-blank-issue.yml diff --git a/.github/workflows/no-blank-issue.yml b/.github/workflows/no-blank-issue.yml new file mode 100644 index 000000000..0cb5a8f84 --- /dev/null +++ b/.github/workflows/no-blank-issue.yml @@ -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 }}