From c80e2aa1f43f0e4d27838aa8de0c0778f3e955dc Mon Sep 17 00:00:00 2001 From: ashsolei Date: Wed, 22 Apr 2026 21:05:36 +0200 Subject: [PATCH] ci: add repo-hygiene nightly workflow (P2#11) --- .github/workflows/repo-hygiene-consumer.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/repo-hygiene-consumer.yml diff --git a/.github/workflows/repo-hygiene-consumer.yml b/.github/workflows/repo-hygiene-consumer.yml new file mode 100644 index 0000000000..63849be29a --- /dev/null +++ b/.github/workflows/repo-hygiene-consumer.yml @@ -0,0 +1,15 @@ +name: Repo Hygiene (nightly) + +on: + schedule: + - cron: "0 5 * * *" # Daily 05:00 UTC + workflow_dispatch: + +permissions: + contents: read + +jobs: + hygiene: + uses: Ai-road-4-You/enterprise-ci-cd/.github/workflows/repo-hygiene.yml@v1 + with: + fail-on-warnings: false