Skip to content

Commit b41a19d

Browse files
committed
Update manage-stale-issues-and-prs.yml
1 parent 4450ee3 commit b41a19d

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

.github/workflows/manage-stale-issues-and-prs.yml

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -28,30 +28,7 @@ jobs:
2828
delete-branch: true
2929
ignore-updates: false
3030
labels-to-remove-when-unstale: '⏱︎ Stale, 💤 Waiting for feedback'
31-
labels-to-add-when-unstale: ''
32-
labels-to-remove-when-stale: '*'
3331
any-of-labels: ''
3432
ascending: false
3533
close-issue-reason: 'not_planned'
3634
exempt-all-milestones: false
37-
38-
- name: Process closed issues and PRs
39-
if: steps.stale.outputs.closed-issues-prs
40-
uses: actions/github-script@v7
41-
with:
42-
github-token: ${{secrets.GITHUB_TOKEN}}
43-
script: |
44-
const closedItemsStr = '${{ steps.stale.outputs.closed-issues-prs }}';
45-
const closedItems = closedItemsStr.split(',').map(Number);
46-
47-
for (const itemNumber of closedItems) {
48-
await github.rest.actions.createWorkflowDispatch({
49-
owner: context.repo.owner,
50-
repo: context.repo.repo,
51-
workflow_id: 'remove-labels-and-assignees-on-close.yml',
52-
ref: 'main',
53-
inputs: {
54-
issue_number: itemNumber.toString()
55-
}
56-
});
57-
}

0 commit comments

Comments
 (0)