From b2e39134abd88f15f45c9c33dcc8aa62eabd69cd Mon Sep 17 00:00:00 2001 From: Shishir Suvarna Date: Mon, 31 Jul 2023 20:33:14 +0530 Subject: [PATCH] Remove stale plugin for Github workflows-3x --- .github/workflows/stale.yml | 28 ---------------------------- 1 file changed, 28 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 ab88493b..00000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Mark stale issues and pull requests - -on: - schedule: - - cron: '05 00 * * *' - -jobs: - stale: - - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - - steps: - - uses: actions/stale@v3 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: > - This issue has been automatically marked as stale because it has not had - recent activity. It will be closed if no further activity occurs. Thank you - for your contributions. - stale-pr-message: > - This pull request has been automatically marked as stale because it has not had - recent activity. It will be closed if no further activity occurs. Thank you - for your contributions. - stale-issue-label: 'no-issue-activity' - stale-pr-label: 'no-pr-activity'