Skip to content

Commit

Permalink
Merge pull request #96 from openequella/chore/use-action-stale
Browse files Browse the repository at this point in the history
chore: add the configuration of action stale for GitHub Action workflow
  • Loading branch information
PenghaiZhang authored Sep 28, 2023
2 parents d41f33c + ffc19df commit 1402e29
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
16 changes: 0 additions & 16 deletions .github/stale.yml

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-issue-label: 'stale'
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
days-before-stale: 120
days-before-close: 14
exempt-issue-labels: 'keep alive'

0 comments on commit 1402e29

Please sign in to comment.