From 7a8b85ab11fb0dbfa110fb48bad7928791e2486b Mon Sep 17 00:00:00 2001 From: agobrech <45268029+agobrech@users.noreply.github.com> Date: Fri, 30 Jun 2023 11:07:37 +0200 Subject: [PATCH] ci: Add Github Action to enforce template to issues (#5295) Add workflow template for enforcing issue template --- .github/workflows/check-issue-template.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/check-issue-template.yml diff --git a/.github/workflows/check-issue-template.yml b/.github/workflows/check-issue-template.yml new file mode 100644 index 0000000000..755307a1dd --- /dev/null +++ b/.github/workflows/check-issue-template.yml @@ -0,0 +1,18 @@ +name: Check Issue Template + +on: + issues: + types: [opened, edited] + +jobs: + check-issue: + name: Check Issue Template + runs-on: ubuntu-latest + steps: + - name: Run Check Issue Template + uses: n8n-io/GH-actions-playground@v1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + + +