From bff3c47dc257bb9d4451a68bf7d9806be3c37aee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mr=2E=20m=20=20=F0=9F=A4=99?= <91018726+mauro-balades@users.noreply.github.com> Date: Wed, 23 Oct 2024 15:45:40 +0200 Subject: [PATCH] Delete .github/workflows/stale.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: mr. m 🤙 <91018726+mauro-balades@users.noreply.github.com> --- .github/workflows/stale.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100644 index e0b6ba679..000000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Close inactive issues -on: - schedule: - - cron: '0 0 * * *' - workflow_dispatch: - -jobs: - close-issues: - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - steps: - - uses: actions/stale@v5 - with: - days-before-issue-stale: 30 - days-before-issue-close: 14 - stale-issue-label: 'stale' - stale-issue-message: | - This issue is stale because it has been open for 30 days with no activity. - - Please close this issue if you feel it is no longer relevant, or comment if you have more information to share. - close-issue-message: | - This issue was closed because it has been inactive for 14 days since being marked as stale. - - If you think this issue should remain open, please comment with a request for it to be re-opened or open a new issue. - days-before-pr-stale: -1 - days-before-pr-close: -1 - repo-token: ${{ secrets.GITHUB_TOKEN }}