1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-07-14 23:00:06 +02:00
instaloader/.github/workflows/stale.yml

35 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2019-10-19 16:20:25 +02:00
name: Mark stale issues and pull requests
on:
schedule:
- cron: "55 7 * * *"
2019-10-19 16:20:25 +02:00
jobs:
stale:
name: Mark stale issues and pull requests
2019-10-19 16:20:25 +02:00
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
2020-05-24 11:25:37 +02:00
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
only-labels: 'question'
stale-issue-message: 'There has been no activity on this question for an extended period of time. This issue will be closed after further 14 days of inactivity.'
stale-issue-label: 'stale'
exempt-issue-labels: 'leave open'
days-before-stale: 21
2020-05-24 11:25:37 +02:00
days-before-close: -1
remove-stale-when-updated: false
- uses: actions/stale@v9
2019-10-19 16:20:25 +02:00
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'There has been no activity on this issue for an extended period of time. This issue will be closed after further 14 days of inactivity.'
stale-pr-message: 'There has been no activity on this Pull Request for an extended period of time. This Pull Request will be closed after further 14 days of inactivity.'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'leave open'
exempt-pr-labels: 'leave open'
days-before-stale: 189
2019-10-19 16:20:25 +02:00
days-before-close: 14