diff options
| author | Taras Madan <tarasmadan@google.com> | 2023-07-26 10:50:29 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2023-07-26 09:42:46 +0000 |
| commit | 71f8554dae7330f8cfa1b22775ebafdff2315623 (patch) | |
| tree | 63312373603d8500316740b79232c87b9bc2bf29 /.github | |
| parent | 4d1a770f7c22e0bb0d56c83c0c2b2eea291c07a5 (diff) | |
closestale.yaml: notify about stale PRs
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/closestale.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/closestale.yaml b/.github/workflows/closestale.yaml new file mode 100644 index 000000000..92d759aa6 --- /dev/null +++ b/.github/workflows/closestale.yaml @@ -0,0 +1,19 @@ +# Copyright 2023 syzkaller project authors. All rights reserved. +# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +# https://github.com/actions/stale for details. + +name: 'Label/close stale PRs' +on: + schedule: + - cron: '30 * * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + stale-pr-message: 'This PR is stale because it has been open 90 days with no activity.' + days-before-pr-stale: 90 + days-before-pr-close: -1 # never |
