Skip to content

Commit

Permalink
feat: add stale bot
Browse files Browse the repository at this point in the history
  • Loading branch information
acaloiaro committed Aug 15, 2024
1 parent 54f3364 commit dbe8589
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/stalebot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale. Feel free to re-open it if it requires more attention'
stale-pr-message: 'This PR is stale. Feel free to re-open it if it requires more attention.'
stale-issue-label: 'stale'
exempt-issue-labels: 'enhancement,bug'
stale-pr-label: 'stale'
exempt-pr-labels: 'in progress'
4 changes: 2 additions & 2 deletions gomod2nix.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@ schema = 3
version = "v0.0.0-20190308202827-9d24e82272b4"
hash = "sha256-azbksMSLQf1CK0jF2i+ESjFenMDR88xRW1tov0metrg="
[mod."google.golang.org/protobuf"]
version = "v1.28.1"
hash = "sha256-sTJYgvlv5is7vHNxcuigF2lNASp0QonhUgnrguhfHSU="
version = "v1.33.0"
hash = "sha256-cWwQjtUwSIEkAlAadrlxK1PYZXTRrV4NKzt7xDpJgIU="

0 comments on commit dbe8589

Please sign in to comment.