summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorv-junyli <[email protected]>2025-11-19 03:44:42 -0800
committerGitHub <[email protected]>2025-11-19 03:44:42 -0800
commit1d89a1513f519f62226f84a3131916ab2fd0c3ef (patch)
tree595d26149922576f89ec5f2f7bb5b0e5cce5d71d
parent7615e296273d8ac434f6ead7bd33ac2ca089429c (diff)
parent5b119348a3f3d96ede622a3e15f75294432c281a (diff)
Merge pull request #1336 from microsoft/user/vjunyli/disableWorkflowuser/jakobl/wdk.28000.1-RTM
disable schedule and deleted the closing issue part
-rw-r--r--.github/workflows/StaleIssues.yml5
1 files changed, 0 insertions, 5 deletions
diff --git a/.github/workflows/StaleIssues.yml b/.github/workflows/StaleIssues.yml
index 4d2a12aa..d3a3776a 100644
--- a/.github/workflows/StaleIssues.yml
+++ b/.github/workflows/StaleIssues.yml
@@ -1,9 +1,6 @@
name: Close inactive issues
on:
workflow_dispatch:
- schedule:
- # Runs every Monday at 06:00 PST (14:00 UTC)
- - cron: '0 14 * * 1'
jobs:
close-issues:
runs-on: ubuntu-latest
@@ -13,9 +10,7 @@ jobs:
- uses: actions/stale@v10
with:
days-before-issue-stale: 365
- days-before-issue-close: 31
stale-issue-label: "stale"
stale-issue-message: "This issue has been inactive for a year. It will be closed in 31 days if no further activity occurs. If you believe this issue is still relevant, please comment to keep it open."
- close-issue-message: "Closing due to prolonged inactivity."
operations-per-run: 400
repo-token: ${{ secrets.GITHUB_TOKEN }}