Skip to content

Commit

Permalink
Update stale.yml to mark issues after 365 days
Browse files Browse the repository at this point in the history
Mark issue as stale if it receives no attention for more than 365 days.

Signed-off-by: Michal Polovka <[email protected]>
  • Loading branch information
miskopo committed Dec 12, 2023
1 parent 97f3db0 commit 294c78d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ name: Mark stale issues and pull requests
on:
schedule:
- cron: "25 12 * * *"
workflow_dispatch:

jobs:
stale:
Expand All @@ -20,8 +21,8 @@ jobs:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has not received any attention in 120 days."
stale-issue-message: "This issue has not received any attention in 365 days."
stale-pr-message: "This PR has not received any attention in 60 days."
days-before-issue-stale: 120
days-before-issue-stale: 365
stale-issue-label: "stale"
stale-pr-label: "stale"

0 comments on commit 294c78d

Please sign in to comment.