Skip to content

Commit

Permalink
feat: add stale pr workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nulladdict committed Oct 28, 2020
1 parent 8465fca commit 6dad618
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: "Close stale PRs"
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
skip-stale-pr-message: true
stale-pr-message: "skip"
close-pr-message: "🤖 Злые роботы закрыли ваш PR за неактивность. Если это несправедливое угнетение, обратитесь за помощью к ближайшему человеку."
days-before-stale: 30
days-before-close: 0

0 comments on commit 6dad618

Please sign in to comment.