From 9bcd8cec801f68326735b7c90b43c5c7f58341af Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 17 Dec 2024 16:38:13 +0100 Subject: [PATCH] Add stale workflow (#150) Add standard Home Assistant stale workflow (mark stale after 30 days then close after 7 additional days). --- .github/workflows/stale.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/stale.yaml diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml new file mode 100644 index 0000000..eb87d45 --- /dev/null +++ b/.github/workflows/stale.yaml @@ -0,0 +1,11 @@ +--- +name: Stale + +on: + schedule: + - cron: "45 5 * * *" + workflow_dispatch: + +jobs: + workflows: + uses: home-assistant/actions/.github/workflows/stale.yaml@master