2020-09-16 18:28:57 +00:00
|
|
|
name: PR auto close, if you stay more than 8 days open
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
2020-09-16 18:30:19 +00:00
|
|
|
- cron: '0 0 * * *'
|
2020-09-16 18:28:57 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
stale:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/stale@v1
|
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
stale-pr-message: >
|
2022-07-10 21:11:13 +00:00
|
|
|
This PR has been automatically marked as stale because it has not had
|
2020-09-16 18:28:57 +00:00
|
|
|
recent activity. They will wait 15 days for your interaction, after
|
|
|
|
that the PR will be closed.
|
|
|
|
Please read more in https://github.com/avelino/awesome-go/blob/master/CONTRIBUTING.md
|
|
|
|
stale-pr-label: 'stale'
|
|
|
|
days-before-stale: 15
|
|
|
|
days-before-close: 7
|