From 7451fcdc8cbb5c1f5dcaa044801c99363fa202bf Mon Sep 17 00:00:00 2001 From: geemus Date: Sun, 21 Jan 2024 09:53:18 -0600 Subject: [PATCH] remove stale action --- .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 d5a0f49e..00000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Mark stale issues and pull requests - -on: - schedule: - - cron: "30 1 * * *" - -permissions: - contents: read - -jobs: - stale: - - permissions: - issues: write # for actions/stale to close stale issues - pull-requests: write # for actions/stale to close stale PRs - runs-on: ubuntu-latest - - steps: - - uses: actions/stale@v9 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - days-before-stale: 60 - days-before-close: 7 - exempt-issue-labels: 'pinned,security' - exempt-pr-labels: 'pinned,security' - stale-issue-message: 'This issue has been marked inactive and will be closed if no further activity occurs.' - stale-pr-message: 'This pr has been marked inactive and will be closed if no further activity occurs.' - stale-issue-label: 'no-issue-activity' - stale-pr-label: 'no-pr-activity'