Skip to content

Commit

Permalink
Added stale workflow (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
Seniru authored Nov 12, 2019
1 parent cba5387 commit 1afff2d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Mark stale issues and pull requests

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

jobs:
stale:

runs-on: ubuntu-latest

steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has been marked as stale as it is inactive for a longer period.'
stale-pr-message: 'This pull request is marked as stale because of inactivity. Please contact the collaborators via mentioning to ensure that you are still working on this. \nSorry for any inconvenience caused!'
stale-issue-label: 'stale'
stale-pr-label: 'stale'

0 comments on commit 1afff2d

Please sign in to comment.