Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit f1f1a1f

Browse files
authored
Merge branch 'main' into dependabot/pip/lxml-6.0.2
2 parents bc99876 + 5387e39 commit f1f1a1f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/stale.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Close stale issues and PRs"
2+
on:
3+
schedule:
4+
- cron: "30 1 * * *"
5+
6+
jobs:
7+
stale:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: write
11+
issues: write
12+
pull-requests: write
13+
steps:
14+
- uses: actions/stale@v10
15+
with:
16+
stale-pr-message: "This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days."
17+
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days."
18+
close-pr-message: 'This PR was closed because it has been stalled for 5 days with no activity.'
19+
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
20+
days-before-stale: 30
21+
days-before-close: 5
22+
exempt-issue-labels: "bug"
23+
except-pr-labels: "bug"

0 commit comments

Comments
 (0)