- Add comprehensive CI/CD workflows for testing and releases - Include issue and pull request templates - Add GitHub labeler configuration for automated triage - Include license check and stale issue management - Add Windsurf rules for development workflow - Include database directory structure with gitkeep Provides complete GitHub automation and development tooling for streamlined contribution and project management.
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
name: Mark Stale Issues and PRs
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 1" # Every Monday at midnight
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Mark stale issues and PRs
|
|
uses: actions/stale@v8
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
days-before-stale: 30
|
|
days-before-close: 14
|
|
stale-issue-label: "stale"
|
|
stale-pr-label: "stale"
|
|
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 within 14 days.
|
|
Thank you for your contributions!
|
|
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 within 14 days.
|
|
Thank you for your contributions!
|
|
exempt-issue-labels: "pinned,security,help wanted,good first issue"
|
|
exempt-pr-labels: "pinned,security,help wanted,good first issue"
|