dolibarr/.github/workflows/stale-issues.yml
Laurent Destailleur 9f75c10a13 Stale workflow
2020-02-10 02:23:31 +01:00

18 lines
809 B
YAML

name: "Close stale issues (bugs and feature requests)"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 1 year with no activity. If this is a bug, please comment to confirm it is still present on latest stable version. if this is a feature request, please comment to notify the request is still relevant and not yet covered by latest stable version. Without comment, this issue will be closed automatically by stale bot in 15 days.'
stale-issue-label: 'Issue Stale (automatic label)'
exempt-issue-label: 'Bug Security (CVE)'
days-before-stale: 365
days-before-close: 10