mirror of
https://github.com/krkn-chaos/krkn.git
synced 2026-09-01 09:37:16 +00:00
* added stale workflow from actions repo Signed-off-by: antedotee <soniyadav2051982@gmail.com> * added comment Signed-off-by: antedotee <soniyadav2051982@gmail.com> --------- Signed-off-by: antedotee <soniyadav2051982@gmail.com> Co-authored-by: Paige Patton <64206430+paigerube14@users.noreply.github.com>
16 lines
268 B
YAML
16 lines
268 B
YAML
name: Manage Stale Issues and Pull Requests
|
|
|
|
on:
|
|
schedule:
|
|
# Run daily at 1:00 AM UTC
|
|
- cron: "0 1 * * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
uses: krkn-chaos/actions/.github/workflows/stale.yml@main
|