Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit43f1743

Browse files
chore: add a stale workflow
Use the stale action to close issues and pull-requests with noactivity.Issues: It will mark them as stale after 60 days and then closethem once they have been stale for 15 days.Pull-Requests: It will mark pull-requests as stale after 90 days and then closethem once they have been stale for 15 days.https://github.com/actions/staleCloses:#1649
1 parentca58008 commit43f1743

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

‎.github/workflows/stale.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# https://github.com/actions/stale
2+
name:'Close stale issues and PRs'
3+
on:
4+
schedule:
5+
-cron:'30 1 * * *'
6+
7+
permissions:
8+
issues:write
9+
pull-requests:write
10+
11+
concurrency:
12+
group:lock
13+
14+
jobs:
15+
stale:
16+
runs-on:ubuntu-latest
17+
steps:
18+
-uses:actions/stale@v4
19+
with:
20+
stale-issue-message:'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 15 days.'
21+
days-before-issue-stale:60
22+
days-before-issue-close:15
23+
close-issue-message:'This issue was closed because it has been stalled for 15 days with no activity. If this issue is still valid please re-open'
24+
25+
stale-pr-message:'This PR is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 15 days.'
26+
days-before-pr-stale:90
27+
days-before-pr-close:15
28+
close-pr-message:'This PR was closed because it has been stalled for 15 days with no activity. If this PR is still valid please re-open'

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp