mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
528 B
19 lines
528 B
name: Close stale issues and PRs
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
days-before-stale: 30
|
|
days-before-close: -1
|
|
stale-issue-label: stale
|
|
stale-pr-label: stale
|
|
# action has a bug that keeps removing the stale label from stale PRs
|
|
# it's thinking that the PR is updated when the stale label is added
|
|
remove-pr-stale-when-updated: false
|
|
operations-per-run: 1000
|