Skip to content

Commit

Permalink
chore: added gh 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 2b50e46 commit 85748b0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -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 85748b0

Please sign in to comment.