Added Stale Workflow

pull/78/head
Fab 2021-03-15 22:30:46 +01:00
rodzic f49d6cdc4e
commit 9e222957d6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B575FD2D8B7D6725
1 zmienionych plików z 22 dodań i 0 usunięć

22
.github/workflows/stale.yml vendored 100644
Wyświetl plik

@ -0,0 +1,22 @@
name: Mark and close 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: 'It looks like this has been idle a while, so I am marking it as stale. Remove the label or comment if this issue should remain open.'
stale-pr-message: 'It looks like this PR has been idle a while, so I am marking it as stale. Remove the label or comment if this is still being worked on.'
stale-issue-label: 'no-activity'
stale-pr-label: 'no-activity'
exempt-pr-labels: 'help wanted'
days-before-stale: 30
days-before-close: 5