From f607313351ae271e9106fc0e4c7a8ac22a2a310c Mon Sep 17 00:00:00 2001 From: Asaf Mesika Date: Fri, 10 Nov 2023 06:10:12 +0200 Subject: [PATCH] [improve][ci] Disable stale bot (#21549) --- .github/workflows/ci-stale-issue-pr.yaml | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .github/workflows/ci-stale-issue-pr.yaml diff --git a/.github/workflows/ci-stale-issue-pr.yaml b/.github/workflows/ci-stale-issue-pr.yaml deleted file mode 100644 index c4303f83a3a3b..0000000000000 --- a/.github/workflows/ci-stale-issue-pr.yaml +++ /dev/null @@ -1,17 +0,0 @@ -name: 'Stale issues and PRs' -on: - schedule: - - cron: '30 1 * * *' - -jobs: - stale: - runs-on: ubuntu-22.04 - steps: - - uses: actions/stale@v4 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'The issue had no activity for 30 days, mark with Stale label.' - stale-pr-message: 'The pr had no activity for 30 days, mark with Stale label.' - days-before-stale: 30 - days-before-close: -1 - operations-per-run: 700