Skip to content

Commit

Permalink
(automated) Added .github/workflows/stale.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
YashTotale committed Jan 17, 2021
1 parent 5fde883 commit 69e43a4
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 PRs

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

jobs:
stale:
runs-on: ubuntu-latest

steps:
- name: Mark stale issues and PRs
uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has had no activity for a while"
stale-pr-message: "This pull request has had no activity for a while"
stale-issue-label: "stale"
stale-pr-label: "stale"

0 comments on commit 69e43a4

Please sign in to comment.