Skip to content

Commit

Permalink
Merge pull request #60 from lisenet/feature-github-actions
Browse files Browse the repository at this point in the history
Add stale action
  • Loading branch information
lisenet authored Nov 25, 2023
2 parents d7d3180 + 264833a commit 64f8a09
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/stale-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: "Close stale issues and PRs"

on:
schedule:
- cron: "37 13 * * *"

permissions:
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-22.04
steps:
- uses: actions/stale@v8
with:
stale-issue-message: "This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days."
close-issue-message: "This issue was closed because it has been stalled for 7 days with no activity."
stale-pr-message: "This PR is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days."
close-pr-message: "This PR was closed because it has been stalled for 7 days with no activity."
stale-issue-label: "stale"
stale-pr-label: "stale"
days-before-issue-stale: 180
days-before-pr-stale: 180
days-before-issue-close: 7
days-before-pr-close: 7
exempt-issue-labels: "in progress"
exempt-pr-labels: "in progress"

0 comments on commit 64f8a09

Please sign in to comment.