mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-08 14:21:14 +00:00
remove stalebot (#5079)
## Description
- remove stale bot (bad bot 👎 )
- add github action to do bots job
Closes: #XXX
This commit is contained in:
15
.github/workflows/stale.yml
vendored
Normal file
15
.github/workflows/stale.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
name: "Close stale pull requests"
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v3
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
stale-pr-message: "Message to comment on stale PRs. If none provided, will not mark PRs stale"
|
||||
days-before-stale: 20
|
||||
exempt-pr-labels: "S:wip"
|
||||
Reference in New Issue
Block a user