mirror of
https://github.com/knadh/listmonk.git
synced 2025-03-01 08:45:28 +08:00
Merge branch 'stale-action'
This commit is contained in:
commit
766d62b4a3
1 changed files with 19 additions and 0 deletions
19
.github/workflows/issues.yml
vendored
Normal file
19
.github/workflows/issues.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: "close-stale-issues-and-prs"
|
||||
on:
|
||||
schedule:
|
||||
- cron: "30 1 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/stale@v9
|
||||
with:
|
||||
days-before-stale: 90
|
||||
stale-issue-message: ""
|
||||
stale-pr-message: ""
|
||||
stale-issue-label: "stale"
|
||||
stale-pr-label: "stale"
|
||||
debug-only: true
|
||||
exempt-all-assignees: true
|
Loading…
Reference in a new issue