Skip to content

Commit

Permalink
Create action-needed.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
palma21 committed Jul 19, 2020
1 parent cbdcac3 commit 11f31bc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/action-needed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Mark stale issues and pull requests

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

jobs:
stale:

runs-on: ubuntu-latest

steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-label: 'action-required'
stale-pr-label: 'action-required'
only-labels: 'triage'
days-before-stale: 2
days-before-close: -1

0 comments on commit 11f31bc

Please sign in to comment.