739a95f1e7
* gha: Add Pull Request to stale target * gha: Add ncc check step (Close #98 ) * src: Rename showVersion() * test: Add not to be cases * Remove old comment * gha: Add update major tag workflow (Close #97 )
17 lines
588 B
YAML
17 lines
588 B
YAML
name: Stale
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "6 6 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- uses: actions/stale@v1
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: 'This issue is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
|
|
stale-pr-message: 'This pull request is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
|
|
days-before-stale: 21
|
|
days-before-close: 7
|