Skip to content

Commit ff8c8fc

Browse files
authored
Fix workflow to mark issues as stale (#2110)
* add permissions * update stale message
1 parent 3ba1057 commit ff8c8fc

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/stale.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@ on:
66
jobs:
77
stale:
88
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write
911
steps:
10-
- uses: actions/stale@v8
12+
- uses: actions/stale@v9
1113
with:
12-
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
14+
stale-issue-message: 'This issue has been marked as stale because it has been open for 30 days with no activity. This thread will be automatically closed in 5 days if no further activity occurs.'
15+
exempt-issue-labels: 'bug,exporters,good first issue,onnx,onnxruntime,quantization'
1316
days-before-stale: 30
1417
days-before-close: 5

0 commit comments

Comments
 (0)