From 15fad1ea59e3cf51ded9d3737c935795474b0b6d Mon Sep 17 00:00:00 2001 From: viniciusdc Date: Tue, 16 Nov 2021 12:20:46 -0300 Subject: [PATCH] Disable stale bot --- .github/workflows/stale_bot.yml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/stale_bot.yml diff --git a/.github/workflows/stale_bot.yml b/.github/workflows/stale_bot.yml deleted file mode 100644 index 564bc1206..000000000 --- a/.github/workflows/stale_bot.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: "Close stale issues" -on: - schedule: - # runs at 00:15 on every Monday - - cron: "15 00 * * MON-FRI" - -jobs: - stale: - runs-on: ubuntu-latest - steps: - - uses: actions/stale@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue has been automatically marked as stale because there was no recent activity in 60 days. Remove the stale label or add a comment, otherwise, this issue will automatically be closed in 7 days if no further activity occurs.' - close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.' - days-before-stale: 60 - days-before-close: 7