You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# see https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-syntax
2
+
3
+
# These owners will be the default owners for everything in
4
+
# the repo. Unless a later match takes precedence,
Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+15-13Lines changed: 15 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ name: Mark stale issues
2
2
3
3
on:
4
4
schedule:
5
-
- cron: '0 8 * * *'
5
+
- cron: "0 8 * * *"
6
6
workflow_dispatch:
7
7
issue_comment:
8
8
@@ -17,17 +17,17 @@ jobs:
17
17
issues: write
18
18
19
19
steps:
20
-
- uses: actions/stale@v9.1.0
21
-
with:
22
-
repo-token: ${{ secrets.GITHUB_TOKEN }}
23
-
days-before-stale: 30
24
-
days-before-close: 5
25
-
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.'
26
-
stale-issue-label: '${{ env.stale_label }}'
27
-
exempt-issue-labels: 'internal, Fixed In Next Release, Bug, never-stale'
28
-
exempt-all-issue-assignees: true
29
-
operations-per-run: 300
30
-
close-issue-reason: 'not_planned'
20
+
- uses: actions/stale@v9.1.0
21
+
with:
22
+
repo-token: ${{ secrets.GITHUB_TOKEN }}
23
+
days-before-stale: 30
24
+
days-before-close: 5
25
+
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days."
26
+
stale-issue-label: "${{ env.stale_label }}"
27
+
exempt-issue-labels: "internal, Fixed In Next Release, Bug, never-stale, Bug: Confirmed"
28
+
exempt-all-issue-assignees: true
29
+
operations-per-run: 300
30
+
close-issue-reason: "not_planned"
31
31
32
32
remove_stale:
33
33
# trigger "stale" removal immediately when stale issues are commented on
0 commit comments