mirror of
https://github.com/pezkuwichain/phishing.git
synced 2026-04-22 06:48:04 +00:00
18 lines
582 B
YAML
18 lines
582 B
YAML
name: 'Close stale issues and PRs'
|
|
on:
|
|
schedule:
|
|
- cron: '15 2 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v3
|
|
with:
|
|
repo-token: ${{ secrets.GH_PAT }}
|
|
stale-issue-message: 'This issue is stale because it has been open 21 days with no activity. Remove the stale label or comment or this will be closed in 7 days.'
|
|
stale-issue-label: 'stale'
|
|
exempt-issue-labels: '-size-l,-size-m,-size-s,-size-xl,-size-xs,<support>,[bug]'
|
|
days-before-stale: 21
|
|
days-before-close: 7
|