

























@@ -29,7 +29,7 @@ jobs:
2929with:
3030app-id: "2971289"
3131private-key: ${{ secrets.GH_APP_PRIVATE_KEY_FALLBACK }}
32- - name: Mark stale issues and pull requests (primary)
32+ - name: Mark stale unassigned issues and pull requests (primary)
3333id: stale-primary
3434continue-on-error: true
3535uses: actions/stale@v10
@@ -56,12 +56,60 @@ jobs:
5656 close-issue-message: |
5757 Closing due to inactivity.
5858 If this is still an issue, please retry on the latest OpenClaw release and share updated details.
59- If you are absolutely sure it still happens on the latest release, open a new issue with fresh repro steps.
59+ If you are absolutely sure it still happens on the latest release, open a new issue with fresh steps to reproduce.
6060 close-issue-reason: not_planned
6161close-pr-message: |
6262 Closing due to inactivity.
6363 If you believe this PR should be revived, post in #pr-thunderdome-dangerzone on Discord to talk to a maintainer.
6464 That channel is the escape hatch for high-quality PRs that get auto-closed.
65+ - name: Mark stale assigned issues (primary)
66+id: assigned-issue-stale-primary
67+continue-on-error: true
68+uses: actions/stale@v10
69+with:
70+repo-token: ${{ steps.app-token.outputs.token || steps.app-token-fallback.outputs.token }}
71+days-before-issue-stale: 30
72+days-before-issue-close: 10
73+days-before-pr-stale: -1
74+days-before-pr-close: -1
75+stale-issue-label: stale
76+exempt-issue-labels: enhancement,maintainer,pinned,security,no-stale
77+operations-per-run: 2000
78+ascending: true
79+include-only-assigned: true
80+remove-stale-when-updated: true
81+stale-issue-message: |
82+ This assigned issue has been automatically marked as stale after 30 days of inactivity.
83+ Please add updates or it will be closed.
84+ close-issue-message: |
85+ Closing due to inactivity.
86+ If this is still an issue, please retry on the latest OpenClaw release and share updated details.
87+ If you are absolutely sure it still happens on the latest release, open a new issue with fresh steps to reproduce.
88+ close-issue-reason: not_planned
89+ - name: Mark stale assigned pull requests (primary)
90+id: assigned-stale-primary
91+continue-on-error: true
92+uses: actions/stale@v10
93+with:
94+repo-token: ${{ steps.app-token.outputs.token || steps.app-token-fallback.outputs.token }}
95+days-before-issue-stale: -1
96+days-before-issue-close: -1
97+days-before-pr-stale: 27
98+days-before-pr-close: 3
99+stale-pr-label: stale
100+exempt-pr-labels: maintainer,no-stale,bad-barnacle
101+operations-per-run: 2000
102+ascending: true
103+include-only-assigned: true
104+ignore-pr-updates: true
105+remove-stale-when-updated: true
106+stale-pr-message: |
107+ This assigned pull request has been automatically marked as stale after being open for 27 days.
108+ Please add updates or it will be closed.
109+ close-pr-message: |
110+ Closing due to inactivity.
111+ If you believe this PR should be revived, post in #pr-thunderdome-dangerzone on Discord to talk to a maintainer.
112+ That channel is the escape hatch for high-quality PRs that get auto-closed.
65113 - name: Check stale state cache
66114id: stale-state
67115if: always()
@@ -86,7 +134,7 @@ jobs:
86134 core.warning(`Failed to check stale state cache: ${message}`);
87135 core.setOutput("has_state", "false");
88136 }
89- - name: Mark stale issues and pull requests (fallback)
137+ - name: Mark stale unassigned issues and pull requests (fallback)
90138if: (steps.stale-primary.outcome == 'failure' || steps.stale-state.outputs.has_state == 'true') && steps.app-token-fallback.outputs.token != ''
91139uses: actions/stale@v10
92140with:
@@ -112,8 +160,54 @@ jobs:
112160 close-issue-message: |
113161 Closing due to inactivity.
114162 If this is still an issue, please retry on the latest OpenClaw release and share updated details.
115- If you are absolutely sure it still happens on the latest release, open a new issue with fresh repro steps.
163+ If you are absolutely sure it still happens on the latest release, open a new issue with fresh steps to reproduce.
164+ close-issue-reason: not_planned
165+close-pr-message: |
166+ Closing due to inactivity.
167+ If you believe this PR should be revived, post in #pr-thunderdome-dangerzone on Discord to talk to a maintainer.
168+ That channel is the escape hatch for high-quality PRs that get auto-closed.
169+ - name: Mark stale assigned issues (fallback)
170+if: (steps.assigned-issue-stale-primary.outcome == 'failure' || steps.stale-state.outputs.has_state == 'true') && steps.app-token-fallback.outputs.token != ''
171+uses: actions/stale@v10
172+with:
173+repo-token: ${{ steps.app-token-fallback.outputs.token }}
174+days-before-issue-stale: 30
175+days-before-issue-close: 10
176+days-before-pr-stale: -1
177+days-before-pr-close: -1
178+stale-issue-label: stale
179+exempt-issue-labels: enhancement,maintainer,pinned,security,no-stale
180+operations-per-run: 2000
181+ascending: true
182+include-only-assigned: true
183+remove-stale-when-updated: true
184+stale-issue-message: |
185+ This assigned issue has been automatically marked as stale after 30 days of inactivity.
186+ Please add updates or it will be closed.
187+ close-issue-message: |
188+ Closing due to inactivity.
189+ If this is still an issue, please retry on the latest OpenClaw release and share updated details.
190+ If you are absolutely sure it still happens on the latest release, open a new issue with fresh steps to reproduce.
116191 close-issue-reason: not_planned
192+ - name: Mark stale assigned pull requests (fallback)
193+if: (steps.assigned-stale-primary.outcome == 'failure' || steps.stale-state.outputs.has_state == 'true') && steps.app-token-fallback.outputs.token != ''
194+uses: actions/stale@v10
195+with:
196+repo-token: ${{ steps.app-token-fallback.outputs.token }}
197+days-before-issue-stale: -1
198+days-before-issue-close: -1
199+days-before-pr-stale: 27
200+days-before-pr-close: 3
201+stale-pr-label: stale
202+exempt-pr-labels: maintainer,no-stale,bad-barnacle
203+operations-per-run: 2000
204+ascending: true
205+include-only-assigned: true
206+ignore-pr-updates: true
207+remove-stale-when-updated: true
208+stale-pr-message: |
209+ This assigned pull request has been automatically marked as stale after being open for 27 days.
210+ Please add updates or it will be closed.
117211 close-pr-message: |
118212 Closing due to inactivity.
119213 If you believe this PR should be revived, post in #pr-thunderdome-dangerzone on Discord to talk to a maintainer.
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。