diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-06-16 20:49:52 +0200 |
---|---|---|
committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-06-16 20:54:55 +0200 |
commit | 0c687ea4c1f4aa3a607d520de02cbc85bb768521 (patch) | |
tree | ef558ad275895ba5511e0ae6a9d9fa6534b1026f /.github | |
parent | Merge pull request #11353 from fdumontet6WIND/bmp_src_interface (diff) | |
download | frr-0c687ea4c1f4aa3a607d520de02cbc85bb768521.tar.xz frr-0c687ea4c1f4aa3a607d520de02cbc85bb768521.zip |
github: Autoclose stale issues/PRs that are stare longer than 180 days
Set autoclose label after 180 days (no activity) and close (really) two weeks
later.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/stale.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index df9f5ce5b..aea81e9e1 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -14,7 +14,9 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue is stale because it has been open 180 days with no activity. Comment or remove the `autoclose` label in order to avoid having this issue closed.' stale-issue-label: autoclose + stale-pr-message: 'This PR is stale because it has been open 180 days with no activity. Comment or remove the `autoclose` label in order to avoid having this PR closed.' + stale-pr-label: autoclose days-before-stale: 180 - days-before-close: -1 - days-before-pr-stale: -1 - days-before-pr-close: -1 + days-before-close: 194 + days-before-pr-stale: 180 + days-before-pr-close: 194 |