Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 4 additions & 3 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ name: Scorecard supply-chain security
on:
# For the Branch-Protection check; only the default branch is supported.
branch_protection_rule:
# Keeps the Maintained check fresh and re-evaluates after CodeQL has settled.
# Keeps the Maintained check fresh and re-evaluates after CodeQL has settled. Weekly is enough:
# the score signals do not move day to day, and Friday lands just after the Thursday CodeQL run.
schedule:
- cron: '24 17 * * *'
- cron: '24 17 * * 5'
# Lets a maintainer trigger the first run (and re-runs) by hand from the Actions
# tab, instead of waiting for the daily cron - useful to publish the first report.
# tab, instead of waiting for the weekly cron - useful to publish the first report.
workflow_dispatch:
# NOTE: no 'push' trigger on purpose - running at merge time races the CodeQL
# scan of the just-merged commit and makes the SAST check read as unchecked.
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
node_modules/
dist/fortify.cov.*
coverage/
.nyc_output/
*.log
Expand Down
Loading