Skip to content

Commit

Permalink
Fix workflow to mark PRs as stale
Browse files Browse the repository at this point in the history
  • Loading branch information
echarlaix committed Dec 4, 2024
1 parent d6de676 commit 13bc0b3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:

permissions:
issues: write
pull-requests: write

jobs:
stale:
Expand All @@ -13,6 +14,10 @@ jobs:
- uses: actions/stale@v8
with:
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.'
stale-pr-message: 'This PR has been marked as stale because it has been open for 90 days with no activity. This thread will be automatically closed in 30 days if no further activity occurs.'
exempt-issue-labels: 'bug,exporters,good first issue,onnx,onnxruntime,quantization'
days-before-stale: 30
days-before-close: 5
days-before-issue-stale: 30
days-before-issue-close: 5
days-before-pr-stale: 90
days-before-pr-close: 30
exempt-all-pr-assignees: true

0 comments on commit 13bc0b3

Please sign in to comment.