forked from github/explore
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 802 Bytes
/
stale.yml
File metadata and controls
28 lines (26 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Mark stale PRs
on:
workflow_dispatch:
schedule:
- cron: "0 12 * * *"
permissions:
contents: read
jobs:
stale:
permissions:
issues: write # for actions/stale to close stale issues
pull-requests: write # for actions/stale to close stale PRs
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
with:
stale-pr-message: >
This pull request has been automatically marked as stale because it has not
had recent activity. It will be closed if no further activity occurs.
Thank you for your contributions.
stale-pr-label: "stale"
exempt-pr-labels: "pinned,security,dependencies"
days-before-pr-stale: 30
days-before-pr-close: 7
ascending: true
operations-per-run: 100