From bb55e29833db1c3bf59bcf49579aace558fdf07a Mon Sep 17 00:00:00 2001 From: Hundrec Date: Sat, 22 Feb 2025 13:38:08 -0700 Subject: [PATCH] Remove issue reopening action --- .github/workflows/label-issue.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/label-issue.yml diff --git a/.github/workflows/label-issue.yml b/.github/workflows/label-issue.yml deleted file mode 100644 index 7430f161c0..0000000000 --- a/.github/workflows/label-issue.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: "Issue Labeler" -on: - issues: - types: - - opened - - reopened - - edited - -jobs: - # When an issue is opened, detect if it has an empty body or incomplete issue form. - # If it does, close the issue immediately. - empty-issues: - name: Close empty issues - runs-on: ubuntu-latest - steps: - - name: Run empty issues closer action - uses: rickstaa/empty-issues-closer-action@v1 - env: - github_token: ${{ secrets.GITHUB_TOKEN }} - with: - close_comment: Closing this issue because it appears to be empty. Please update the issue for it to be reopened. - open_comment: Reopening this issue because the author provided more information.