From 5846a07e343b8de7bda78b5f7d46475599c0e17f Mon Sep 17 00:00:00 2001 From: Takuro Ashie Date: Wed, 29 Mar 2023 14:35:51 +0900 Subject: [PATCH] Remove auto closer for issues that don't follow template For opening normal issues we use issue form for now instead of template so that users no longer able to neglect the issue template. For this purpose auto closer isn't needed anymore. In addition fluentd maintainers might open issues which doesn't follow the template via other systems such as GitHub Projects. Signed-off-by: Takuro Ashie --- .github/workflows/issue-auto-closer.yml | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .github/workflows/issue-auto-closer.yml diff --git a/.github/workflows/issue-auto-closer.yml b/.github/workflows/issue-auto-closer.yml deleted file mode 100644 index b8d9ad531f..0000000000 --- a/.github/workflows/issue-auto-closer.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Autocloser -on: [issues] -jobs: - autoclose: - runs-on: ubuntu-latest - steps: - - name: Autoclose issues that did not follow issue template - uses: roots/issue-closer-action@v1.1 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow the issue template" - issue-pattern: "(.*Describe the bug.*)|(.*Is your feature request related to a problem.*)"