Skip to content

Commit

Permalink
Merge pull request #103 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 ed3a572 + 0141e58 commit 5123859
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/stale-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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 5123859

Please sign in to comment.