From 7e534d173dabcd7810b126241091ba91f23f9603 Mon Sep 17 00:00:00 2001 From: geemus Date: Thu, 28 Apr 2022 20:44:55 -0500 Subject: [PATCH] remove stale workflow closes #108 --- .github/workflows/stale.yml | 23 ----------------------- 1 file changed, 23 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 a565239..0000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Mark stale issues and pull requests - -on: - schedule: - - cron: "30 1 * * *" - -jobs: - stale: - - runs-on: ubuntu-latest - - steps: - - uses: actions/stale@v5 - 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'