Skip to content

Commit dfca04d

Browse files
authored
Merge pull request #24860 from craig-osterhout/stale-workflow-update
stale-workflow: switch off debug
2 parents 490c49a + 73b24c4 commit dfca04d

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/stale.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626

2727
steps:
2828
- name: Handle lifecycle commands
29-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
29+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
3030
env:
3131
# Set to 'true' to test without making actual changes
32-
DEBUG_ONLY: 'true'
32+
DEBUG_ONLY: 'false'
3333
with:
3434
script: |
3535
const comment = context.payload.comment.body.toLowerCase().trim();
@@ -201,6 +201,5 @@ jobs:
201201
days-before-issue-close: 14 # 2 weeks after stale
202202
days-before-pr-close: 30 # 1 month after stale
203203

204-
# Debug mode - set to false when ready for production
205-
# When true, no actual changes will be made (dry-run for testing)
206-
debug-only: true
204+
# Debug mode - set to true for dry-run testing (no actual changes)
205+
debug-only: false

0 commit comments

Comments
 (0)