summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorv-junyli <[email protected]>2025-11-07 15:34:40 -0800
committerGitHub <[email protected]>2025-11-07 15:34:40 -0800
commitc74e59172b2364ba37e3391dde526d2414548a3a (patch)
treeee0190cd14456a7045b9ba2f7d1e53dc1901df3d /.github/workflows
parent57ea2d0f5a34d677338c2aaa7fa20a601038439c (diff)
parent6d81ee33d11824d07a9001b4cf3c9d90d581a2b1 (diff)
Merge pull request #1332 from microsoft/user/vjunyli/FixStaleWF
Increase operations-per-run to 400 and the stale threshold
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/StaleIssues.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/StaleIssues.yml b/.github/workflows/StaleIssues.yml
index 4845bf47..4310fd8b 100644
--- a/.github/workflows/StaleIssues.yml
+++ b/.github/workflows/StaleIssues.yml
@@ -12,8 +12,9 @@ jobs:
- uses: actions/stale@v10
with:
days-before-issue-stale: 365
- days-before-issue-close: 7
+ 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 7 days if no further activity occurs. If you believe this issue is still relevant, please comment to keep it open."
+ 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 }}