From ac7e2b8e3313c70f7e7960aefa1296e302ac19e6 Mon Sep 17 00:00:00 2001 From: o2sh Date: Sun, 23 Jun 2024 16:22:00 +0200 Subject: [PATCH] #1311 remove stale bot --- .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 c787c7e4..00000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: "Close stale issues and PRs" -on: - schedule: - # Once every week at midnight UTC - - cron: "0 0 * * 0" - workflow_dispatch: - -jobs: - stale: - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - steps: - - name: Mark/Close Stale Issues and Pull Requests - uses: actions/stale@v9 - with: - repo-token: ${{ secrets.STALE_ACTION }} - 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. - 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. - exempt-issue-labels: "pinned,security,help wanted,upstream" - exempt-pr-labels: "upstream" - stale-issue-label: "stale" - stale-pr-label: "stale" - exempt-draft-pr: "true"