mirror of
https://github.com/amithkoujalgi/ollama4j.git
synced 2025-09-16 03:39:05 +02:00

- Updated dependabot configuration to include Maven, GitHub Actions, and npm with weekly update schedules and limits on open pull requests. - Added a pull request template to standardize contributions and ensure necessary information is provided. - Introduced issue templates for bug reports and feature requests to streamline issue tracking and enhance user experience. - Created workflows for CodeQL analysis, pre-commit checks, and stale issue management to improve code quality and maintainability.
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
name: Mark stale issues and PRs
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
days-before-stale: 60
|
|
days-before-close: 14
|
|
stale-issue-label: 'stale'
|
|
stale-pr-label: 'stale'
|
|
exempt-issue-labels: 'pinned,security'
|
|
exempt-pr-labels: 'pinned,security'
|
|
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.
|
|
close-issue-message: >
|
|
Closing this stale issue. Feel free to reopen if this is still relevant.
|
|
stale-pr-message: >
|
|
This pull request has been automatically marked as stale due to inactivity.
|
|
It will be closed if no further activity occurs.
|
|
close-pr-message: >
|
|
Closing this stale pull request. Please reopen when you're ready to continue.
|
|
|