Skip to content

Commit

Permalink
chore: added github action stale
Browse files Browse the repository at this point in the history
  • Loading branch information
prahaladhchandrahasan authored and tadayosi committed Apr 7, 2022
1 parent 65f9e38 commit 32808a8
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/stale.yml
@@ -0,0 +1,29 @@
name: "Stale"

on:
schedule:
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-20.04
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 365
days-before-close: 14
stale-issue-label: status/stale
exempt-issue-labels: status/never-stale
stale-issue-message: |
This issue has been automatically marked as stale due to a year of inactivity.
It will be closed if no further activity occurs within 14 days.
If you think that’s incorrect or the issue should never stale, please simply write any comment.
Thanks for your contributions!
stale-pr-label: status/stale
exempt-pr-labels: status/never-stale
stale-pr-message: |
This PR has been automatically marked as stale due to a year of inactivity.
It will be closed if no further activity occurs within 14 days.
If you think that’s incorrect or the issue should never stale, please simply write any comment.
Thanks for your contributions!

0 comments on commit 32808a8

Please sign in to comment.