We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdbe969 commit ba775b6Copy full SHA for ba775b6
.github/workflows/scorecard.yml
@@ -0,0 +1,29 @@
1
+name: scorecard
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ # Run on pushes to default branch
7
+ - main
8
+ schedule:
9
+ # Run weekly on Saturdays
10
+ - cron: "30 1 * * 6"
11
+ # Run when branch protection rules change
12
+ branch_protection_rule:
13
+ # Run the workflow manually
14
+ workflow_dispatch:
15
16
+# Declare default permissions as read-only
17
+permissions: read-all
18
19
+jobs:
20
+ run-scorecard:
21
+ # Call reusable workflow file
22
+ uses: cisco-ospo/.github/.github/workflows/_scorecard.yml@main
23
+ permissions:
24
+ id-token: write
25
+ security-events: write
26
+ secrets: inherit
27
+ with:
28
+ # Publish results of Scorecard analysis
29
+ publish-results: true
0 commit comments