Scorecard Analysis Workflow #260
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Scorecard Analysis Workflow | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| schedule: | ||
| # Weekly on Saturdays. | ||
| - cron: '30 1 * * 6' | ||
| permissions: {} | ||
| jobs: | ||
| analysis: | ||
|
Check failure on line 17 in .github/workflows/scorecards.yml
|
||
| permissions: | ||
| # Needed if using Code scanning alerts | ||
| security-events: write | ||
| # Needed for GitHub OIDC token if publish_results is true | ||
| id-token: write | ||
| # Needed for nested workflow | ||
| actions: read | ||
| attestations: read | ||
| checks: read | ||
| contents: read | ||
| deployments: read | ||
| issues: read | ||
| discussions: read | ||
| packages: read | ||
| pages: read | ||
| pull-requests: read | ||
| repository-projects: read | ||
| statuses: read | ||
| uses: bytemare/workflows/.github/workflows/scorecard.yml@232148ec449718765bacb8bd4684de41f15b8258 | ||
| secrets: | ||
| token: ${{ secrets.SCORECARD_TOKEN }} | ||