github.com/Oyster-zx/tendermint@v0.34.24-fork/.github/workflows/stale.yml (about) 1 name: "Close stale pull requests" 2 on: 3 schedule: 4 - cron: "0 0 * * *" 5 6 jobs: 7 stale: 8 runs-on: ubuntu-latest 9 steps: 10 - uses: actions/stale@v6 11 with: 12 repo-token: ${{ secrets.GITHUB_TOKEN }} 13 stale-pr-message: "This pull request has been automatically marked as stale because it has not had 14 recent activity. It will be closed if no further activity occurs. Thank you 15 for your contributions." 16 days-before-stale: 10 17 days-before-close: 4 18 exempt-pr-labels: "S:wip"