From 8a0b683a6ec9a02cdbcdf509a1fb3d78edf7fbd8 Mon Sep 17 00:00:00 2001 From: Christoph Wille Date: Tue, 7 Jan 2025 18:34:48 +0100 Subject: [PATCH] Only enable workflow_dispatch --- .github/workflows/scorecard.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index 99dce6b96..1ba02149a 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -1,14 +1,15 @@ name: Scorecard supply-chain security on: # For Branch-Protection check. Only the default branch is supported. See - # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection - branch_protection_rule: - # To guarantee Maintained check is occasionally updated. See - # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained - schedule: - - cron: '25 1 * * 2' - push: - branches: [ "master" ] + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection (disabled) + # branch_protection_rule: + workflow_dispatch: + + # schedule ("Maintained") and push are disabled atm + # schedule: + # - cron: '25 1 * * 2' + # push: + # branches: [ "master" ] permissions: read-all