forked from bazelbuild/bazel-central-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
23 lines (21 loc) · 815 Bytes
/
Copy pathstale.yml
File metadata and controls
23 lines (21 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Mark stale pull requests
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/stale@v10
with:
days-before-stale: 30
days-before-close: 14
stale-pr-label: "stale"
exempt-pr-labels: "not stale"
stale-pr-message: "This PR has been automatically marked as stale because it has not had any activity for 30 days. It will be closed in 14 days if no further activity occurs. Please comment on this PR to keep it open, or ask `@bazelbuild/bcr-maintainers` to add the `not stale` label if it's still relevant."
close-pr-message: "This PR has been closed due to inactivity."
exempt-draft-pr: false
operations-per-run: 500
ascending: true