Skip to content

Commit 2284fcf

Browse files
mosabuaebyhr
authored andcommitted
Add stale issue processing
1 parent 973b822 commit 2284fcf

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/stale.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,22 @@ jobs:
1414
steps:
1515
- uses: actions/stale@v10.1.1
1616
with:
17+
# PRs
1718
stale-pr-message: 'This pull request has gone a while without any activity. Ask for help on #trino-gateway-dev on Trino slack.'
1819
days-before-pr-stale: 21
1920
days-before-pr-close: 21
2021
close-pr-message: 'Closing this pull request, as it has been stale for six weeks. Feel free to re-open at any time.'
2122
stale-pr-label: 'stale'
2223
exempt-pr-labels: 'stale-ignore'
23-
start-date: '2020-01-01T00:00:00Z'
2424
exempt-draft-pr: false
25+
# Issues
26+
stale-issue-message: 'This issue has gone a while without any activity. Ask for help on #trino-gateway-dev on Trino slack.'
27+
days-before-issue-stale: 21
28+
days-before-issue-close: 21
29+
close-issue-message: 'Closing this issue, as it has been stale for six weeks. Feel free to re-open at any time.'
30+
stale-issue-label: 'stale'
31+
exempt-issue-labels: 'stale-ignore,roadmap'
32+
# Global settings
33+
start-date: '2020-01-01T00:00:00Z'
2534
operations-per-run: 200
26-
# Avoid processing issues completely, see https://github.com/actions/stale/issues/1112
27-
days-before-issue-stale: -1
28-
days-before-issue-close: -1
35+

0 commit comments

Comments
 (0)