Skip to content
This repository has been archived by the owner on May 10, 2023. It is now read-only.

Commit

Permalink
Create stale.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cerebrate authored Jan 18, 2021
1 parent 28e6682 commit 5238eaf
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Mark stale issues and pull requests

on:
schedule:
- cron: "30 1 * * *"

jobs:
stale:

runs-on: ubuntu-latest

steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'There has been no activity on this issue for over 60 days. If there is no further activity within 7 days from this message, it will be automatically closed.'
stale-pr-message: 'There has been no activity on this pull request for over 60 days. If there is no further activity within 7 days from this message, it will be automatically rejected.'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
exempt-pr-labels: 'on-hold'

0 comments on commit 5238eaf

Please sign in to comment.