mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 21:58:02 +00:00
20 lines
641 B
YAML
20 lines
641 B
YAML
name: 'Close stale issues and PRs'
|
|
on:
|
|
schedule:
|
|
- cron: '40 2/3 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
YARN_ENABLE_SCRIPTS: false
|
|
steps:
|
|
- uses: actions/stale@98ed4cb500039dbcccf4bd9bedada4d0187f2757
|
|
with:
|
|
repo-token: ${{ secrets.GH_PAT_BOT }}
|
|
stale-issue-message: 'This issue has been open for 21 days with no activity and is not labelled as an enhancement. It will be closed in 7 days.'
|
|
stale-issue-label: 'stale'
|
|
exempt-issue-labels: '-size-l,-size-m,-size-s,-size-xl,-size-xs,[bug]'
|
|
days-before-stale: 21
|
|
days-before-close: 7
|