Skip to content

Commit ef801ac

Browse files
committedSep 29, 2020
Promote 'stale' GitHub action to non-debug mode
Also: * Increased frequency to every day * Commented out unused fields
1 parent c16ceb0 commit ef801ac

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎.github/workflows/stale.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Mark stale issues and pull requests
22
on:
33
schedule:
4-
- cron: "0 0 * * 1"
4+
- cron: "0 0 * * *"
55
# Allow the build to be manually triggered
66
workflow_dispatch:
77
jobs:
@@ -40,14 +40,14 @@ jobs:
4040
# Only issues or pull requests with all of these labels are checked if stale. Defaults to `[]` (disabled) and can be a comma-separated list of labels.
4141
only-labels: # optional, default is
4242
# The maximum number of operations per run, used to control rate limiting.
43-
operations-per-run: # optional, default is 30
43+
# operations-per-run: # optional, default is 30
4444
# Remove stale labels from issues when they are updated or commented on.
4545
remove-stale-when-updated: false
4646
# Run the processor in debug mode without actually performing any operations on live issues.
47-
debug-only: true # Until we verify that this actually works!
47+
debug-only: false
4848
# The order to get issues or pull requests. Defaults to false, which is descending
49-
ascending: # optional
49+
# ascending: # optional
5050
# Skip adding stale message when marking a pull request as stale.
51-
skip-stale-pr-message: # optional
51+
# skip-stale-pr-message: # optional
5252
# Skip adding stale message when marking an issue as stale.
53-
skip-stale-issue-message: # optional
53+
# skip-stale-issue-message: # optional

0 commit comments

Comments
 (0)