├── .github └── workflows │ └── stale.yml └── README.md /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | name: Mark stale issues and pull requests 2 | 3 | on: 4 | schedule: 5 | - cron: "30 1 * * *" 6 | 7 | jobs: 8 | stale: 9 | 10 | runs-on: ubuntu-latest 11 | 12 | steps: 13 | - uses: actions/stale@v1 14 | with: 15 | repo-token: ${{ secrets.GITHUB_TOKEN }} 16 | stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days' 17 | days-before-stale: 90 18 | days-before-close: 5 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # discussion 2 | For general discussion over Project V development and usage. 3 | --------------------------------------------------------------------------------