forked from WeblateOrg/docker-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 1.17 KB
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# This file is maintained in https://github.com/WeblateOrg/meta/
name: "Close stale"
on:
schedule:
- cron: "30 1 * * *"
push:
branches:
- master
- main
paths:
- .github/workflows/stale.yml
jobs:
stale-issues:
runs-on: ubuntu-20.04
steps:
- uses: actions/stale@v3
with:
# Ideal setup would be 10/4 for issues and 30/14 for PRs, but not supported, see
# https://github.com/actions/stale/issues/214
days-before-stale: 20
days-before-close: 8
exempt-issue-labels: bug,enhancement,documentation,security
stale-issue-label: wontfix
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: |
This issue has been automatically marked as stale because it has not had any recent activity.
It will be closed soon if no further action occurs.
Thank you for your contributions!
stale-pr-message: |
This pull request has been automatically marked as stale because it has not had any recent activity.
It will be closed soon if no further action occurs.
Thank you for your contributions!