Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
name: scorecard

# Triggers:
# - workflow_run on completed 'release' runs → scan fresh release assets
# - weekly schedule (Mondays, 06:00 UTC) → backstop against drift
# - branch_protection_rule changes → re-score when policy moves
# - manual workflow_dispatch → on-demand
# Not on every main push — most commits don't change release/scorecard-visible
# state, so we were burning runner time publishing stale results.
on:
workflow_run:
workflows: [release]
types: [completed]
branch_protection_rule:
schedule:
- cron: '0 6 * * 1'
push:
branches: [main]
workflow_dispatch:

permissions: read-all

Expand Down
Loading