mirror of
https://github.com/amithkoujalgi/ollama4j.git
synced 2025-05-15 11:57:12 +02:00
24 lines
928 B
YAML
24 lines
928 B
YAML
name: Mark stale issues and pull requests
|
|
|
|
on:
|
|
workflow_dispatch: # for manual run
|
|
schedule:
|
|
- cron: '0 0 * * *' # Runs every day at midnight
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Mark stale issues and pull requests
|
|
uses: actions/stale@v8
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
days-before-stale: 15
|
|
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-close: 7
|
|
stale-issue-label: 'stale'
|
|
exempt-issue-labels: 'pinned,security'
|
|
stale-pr-label: 'stale'
|
|
exempt-pr-labels: 'work-in-progress'
|