From 27280ec260bb353b57807ebcf8aa30b772663405 Mon Sep 17 00:00:00 2001 From: Jay Date: Mon, 9 May 2022 18:02:16 +0200 Subject: [PATCH] Removing the issue template enforcement as many people are complaining and multiple issue are just being closed even when valid --- .github/workflows/close-issues.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/close-issues.yml diff --git a/.github/workflows/close-issues.yml b/.github/workflows/close-issues.yml deleted file mode 100644 index 2127fe1..0000000 --- a/.github/workflows/close-issues.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: 'Close Invalid Issues' - -on: - issues: - types: [opened] - -jobs: - auto_close_issues: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Automatically close issues that don't follow the issue template - uses: lucasbento/auto-close-issues@v1.0.2 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - issue-close-message: 'Hello! :wave: \n\nThis issue is being automatically closed because it does not follow the issue template. Please read the issue template carefully and follow all of the instructions when opening a new issue. \n\nThanks'