From dbe8589bbd4b9842dd90c7cbf44f41d81289e706 Mon Sep 17 00:00:00 2001 From: Adriano Caloiaro Date: Thu, 15 Aug 2024 10:05:43 -0700 Subject: [PATCH] feat: add stale bot --- .github/workflows/stalebot.yml | 17 +++++++++++++++++ gomod2nix.toml | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/stalebot.yml diff --git a/.github/workflows/stalebot.yml b/.github/workflows/stalebot.yml new file mode 100644 index 0000000..27a122e --- /dev/null +++ b/.github/workflows/stalebot.yml @@ -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' diff --git a/gomod2nix.toml b/gomod2nix.toml index b53cc17..ec2555f 100644 --- a/gomod2nix.toml +++ b/gomod2nix.toml @@ -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="