Create close-stale-issues.yml
This commit is contained in:
parent
a424221105
commit
8d1f3737c2
1 changed files with 13 additions and 0 deletions
13
.github/workflows/close-stale-issues.yml
vendored
Normal file
13
.github/workflows/close-stale-issues.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
name: "Close stale issues and pull requests"
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
stale:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/stale@v6
|
||||||
|
with:
|
||||||
|
stale-issue-label: "stale"
|
||||||
|
stale-pr-label: "stale"
|
Loading…
Reference in a new issue