-
Notifications
You must be signed in to change notification settings - Fork 353
33 lines (32 loc) · 1.34 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
name: 'Close stale issues'
on:
schedule:
# Runs every hour
- cron: '0 * * * *'
# Make possible to run manually
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
# Do not run this action on forks
if: ${{ github.repository == 'AdguardTeam/AdguardBrowserExtension' }}
steps:
- uses: actions/stale@v9
with:
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Label to use when marking on issue as stale
stale-issue-label: 'Wontfix'
# Issues with these labels will never be considered stale
exempt-issue-labels: 'Bug,Enhancement,Feature Request,Feature_Request,feature request,feature_request,Localization,Resolution: Fixed,Status: Closed'
# If set to true, the issues with an assignee will not be marked as stale automatically.
exempt-all-issue-assignees: true
days-before-issue-stale: 60
days-before-issue-close: 7
operations-per-run: 100
# automatically remove the stale label when the issues are updated
remove-issue-stale-when-updated: true
# the order used to fetch the issues
ascending: true