From 116f08befddf92df6347d6d87df833c6a3858889 Mon Sep 17 00:00:00 2001 From: Beast Date: Thu, 27 Aug 2026 17:32:26 +0800 Subject: [PATCH] feat: add dependency-cooldown --- .github/workflows/dependency-cooldown-audit.yml | 13 +++++++++++++ .github/workflows/dependency-cooldown.yml | 14 ++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 .github/workflows/dependency-cooldown-audit.yml create mode 100644 .github/workflows/dependency-cooldown.yml diff --git a/.github/workflows/dependency-cooldown-audit.yml b/.github/workflows/dependency-cooldown-audit.yml new file mode 100644 index 0000000..3c7f247 --- /dev/null +++ b/.github/workflows/dependency-cooldown-audit.yml @@ -0,0 +1,13 @@ +name: Dependency cooldown audit + +on: + schedule: + - cron: '0 6 * * 1' + workflow_dispatch: + +permissions: + contents: read + +jobs: + audit: + uses: Quantus-Network/shared-workflows/.github/workflows/dependency-cooldown-audit.yml@v1 diff --git a/.github/workflows/dependency-cooldown.yml b/.github/workflows/dependency-cooldown.yml new file mode 100644 index 0000000..a349f63 --- /dev/null +++ b/.github/workflows/dependency-cooldown.yml @@ -0,0 +1,14 @@ +name: Dependency cooldown + +on: + pull_request: + # labeled/unlabeled/edited are required so the gate re-runs when an + # emergency bypass label or reason is added. + types: [opened, synchronize, reopened, labeled, unlabeled, edited] + +permissions: + contents: read + +jobs: + dependency-cooldown: + uses: Quantus-Network/shared-workflows/.github/workflows/dependency-cooldown.yml@v1