Skip to content

Commit

Permalink
Add stale activity checker (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
imstar15 authored Mar 21, 2024
1 parent f3bbd74 commit d913b84
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/stale_activity.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 13 * * *'
- cron: '39 20 * * *'
workflow_dispatch:
inputs:
days_before_issue_stale:
description: 'how many day before consider an issue as stale'
default: 30
required: false
type: number
days_before_pr_stale:
description: 'how many day before consider a pr as stale'
default: 60
required: false
type: number

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
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 7 days.'
stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.'
close-pr-message: 'This PR was closed because it has been stalled for 14 days with no activity.'
days-before-issue-stale: ${{ github.event.inputs.days_before_issue_stale || 30 }}
days-before-pr-stale: ${{ github.event.inputs.days_before_pr_stale || 60 }}
days-before-issue-close: 7
days-before-pr-close: 14

0 comments on commit d913b84

Please sign in to comment.