diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 4262292d1e..1e92168c2f 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -1,5 +1,6 @@ name: Bug Report description: Create a report with a procedure for reproducing the bug +labels: "waiting-for-triage" body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml index 005f0bf622..e7f6da8efc 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -1,5 +1,6 @@ name: Feature request description: Suggest an idea for this project +labels: "waiting-for-triage" body: - type: markdown attributes: diff --git a/.github/workflows/stale-actions.yml b/.github/workflows/stale-actions.yml new file mode 100644 index 0000000000..17823f0800 --- /dev/null +++ b/.github/workflows/stale-actions.yml @@ -0,0 +1,24 @@ +name: "Mark or close stale issues and PRs" +on: + schedule: + - cron: "00 10 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-stale: 30 + days-before-close: 7 + stale-issue-message: "This issue has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this issue will be closed in 7 days" + stale-pr-message: "This PR has been automatically marked as stale because it has been open 30 days with no activity. Remove stale label or comment or this PR will be closed in 7 days" + close-issue-message: "This issue was automatically closed because of stale in 7 days" + close-pr-message: "This PR was automatically closed because of stale in 7 days" + stale-pr-label: "stale" + stale-issue-label: "stale" + exempt-issue-labels: "waiting-for-triage,bug,enhancement,feature request,pending,work_in_progress,v1,v2" + exempt-pr-labels: "waiting-for-triage,bug,enhancement,feature request,pending,work_in_progress,v1,v2" + exempt-all-assignees: true + exempt-all-milestones: true