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
12 changes: 10 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,17 @@

name: Scorecard supply-chain security

# Scorecard only supports the repository's default branch. Release/tag events
# check out a tag ref and fail with "only default branch is supported", so we
# trigger on the OSSF-recommended events instead: pushes to the default branch,
# a weekly schedule, and branch-protection-rule changes.
on:
release:
types: [created]
push:
branches: [main]
schedule:
# Weekly, Mondays at 07:20 UTC.
- cron: '20 7 * * 1'
branch_protection_rule:

# Top-level read-all permissions; jobs override what they need.
permissions: read-all
Expand Down
Loading