FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
github-docs/.github/workflows/stale.yml at main · coolaj86/github-docs · GitHub
coolaj86
/
github-docs
Public
forked from
github/docs
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
github-docs
/
.github
/
workflows
/
stale.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
32 lines (28 loc) · 1.18 KB
Breadcrumbs
github-docs
/
.github
/
workflows
/
stale.yml
Copy path
File metadata and controls
32 lines (28 loc) · 1.18 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
29
30
31
32
name
:
Stale
#
**What it does**: Close issues and pull requests after no updates for 365 days.
#
**Why we have it**: We want to manage our queue of issues and pull requests.
#
**Who does it impact**: Everyone that works on docs or docs-internal.
on
:
schedule
:
-
cron
:
'
20 16 * * *
'
#
Run every day at 16:20 UTC / 8:20 PST
permissions
:
issues
:
write
pull-requests
:
write
jobs
:
stale
:
if
:
github.repository == 'github/docs-internal' || github.repository == 'github/docs'
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/stale@1160a2240286f5da8ec72b1c0816ce2481aabf84
with
:
repo-token
:
${{ secrets.GITHUB_TOKEN }}
stale-issue-message
:
'
This issue is stale because there have been no updates in 365 days.
'
stale-pr-message
:
'
This PR is stale because there have been no updates in 365 days.
'
days-before-stale
:
365
days-before-close
:
0
stale-issue-label
:
'
stale
'
stale-pr-label
:
'
stale
'
exempt-pr-labels
:
'
never-stale,waiting for review
'
exempt-issue-labels
:
'
never-stale,help wanted,waiting for review
'
operations-per-run
:
1000
close-issue-reason
:
not_planned
Back
|
FazBrowse Home
|
New Git URL