mirror of
https://github.com/BerriAI/litellm.git
synced 2025-04-25 18:54:30 +00:00
action for stale (#8045)
This commit is contained in:
parent
deb0f63c11
commit
02edf191a3
1 changed files with 20 additions and 0 deletions
20
.github/workflows/stale.yml
vendored
Normal file
20
.github/workflows/stale.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
name: "Stale Issue Management"
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * *' # Runs daily at midnight UTC
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
stale:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/stale@v8
|
||||||
|
with:
|
||||||
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs."
|
||||||
|
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs."
|
||||||
|
days-before-stale: 60 # Revert to 60 days
|
||||||
|
days-before-close: 7 # Revert to 7 days
|
||||||
|
stale-issue-label: "stale"
|
||||||
|
ignore-issue-labels: ["pinned", "security"]
|
Loading…
Add table
Add a link
Reference in a new issue