(MAINT) Stale-bot config/msg update
[puppet-modules/puppetlabs-apt.git] / .github / workflows / stale.yml
1 name: Mark stale issues and pull requests
2
3 on:
4   schedule:
5   - cron: "30 1 * * *"
6
7 jobs:
8   stale:
9     runs-on: ubuntu-latest
10     steps:
11     - uses: actions/stale@v3
12       with:
13         repo-token: ${{ secrets.GITHUB_TOKEN }}
14         days-before-issue-stale: 90
15         days-before-pr-stale: 60
16         days-before-pr-close: 7
17         stale-issue-message: |
18           Hello! ðŸ‘‹
19
20           This issue has been open for a while and has had no recent activity. We've labelled it with `attention-needed` so that we can get a clear view of which issues need our attention.
21
22           If you are waiting on a response from us we will try and address your comments on a future Community Day.
23
24           Alternatively, if it is no longer relevant to you please close the issue with a comment.
25         stale-issue-label: 'attention-needed'
26         stale-pr-message: |
27           Hello! ðŸ‘‹
28
29           This pull request has been open for a while and has had no recent activity. We've labelled it with `attention-needed` so that we can get a clear view of which PRs need our attention.
30
31           If you are waiting on a response from us we will try and address your comments on a future Community Day.
32
33           Alternatively, if it is no longer relevant to you please close the PR with a comment. Please note that if a pull request receives no update for 7 after it has been labelled, it will be closed. We are always happy to re-open pull request if they have been closed in error.
34         stale-pr-label: 'attention-needed'