From a6b6b7afa0d8dbec2ac1dcc718a1ce92422ef618 Mon Sep 17 00:00:00 2001 From: Florian Zaruba Date: Thu, 19 Oct 2023 16:04:21 +0200 Subject: [PATCH] Create stale.yml --- .github/workflows/stale.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000000..4c426237ba --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,32 @@ +# Copyright 2023 OpenHW Group +# Licensed under the Apache License, Version 2.0, see LICENSE for details. +# SPDX-License-Identifier: Apache-2.0 + +name: 'Close stale issues and PRs' +# on: +# schedule: +# - cron: '30 1 * * *' +on: workflow_dispatch + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + debug-only: true + stale-issue-label: Status:Stale + stale-pr-label: Status:Stale + stale-issue-message: | + 👋 Hi there! + + This issue seems inactive. Need more help? Feel free to update us. If there are no updates within the next few days, we'll go ahead and close this issue. 😊 + stale-pr-message: | + 👋 Hi there! + + This pull request seems inactive. Need more help or have updates? Feel free to let us know. If there are no updates within the next few days, we'll go ahead and close this PR. 😊 + days-before-stale: 30 + days-before-close: 5 + exempt-issue-labels: Type:Task,Type:Enhancement,Type:Bug + exempt-all-milestones: true + start-date: '2023-09-01T00:00:00Z'