[CI]: Add OpenSSF workflow#814
Merged
michalharakal merged 2 commits intoJul 13, 2026
Merged
Conversation
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
There was a problem hiding this comment.
Pull request overview
Adds an OpenSSF Scorecard GitHub Actions workflow and surfaces the score in the repository README to improve security posture visibility and integrate Scorecard results into GitHub code scanning.
Changes:
- Add OpenSSF Scorecard workflow that runs on pushes/PRs (scoped to
develop) and on a weekly schedule, producing SARIF output. - Upload Scorecard SARIF both as a workflow artifact and to GitHub Code Scanning.
- Add an OpenSSF Scorecard badge to
README.md.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| README.md | Adds an OpenSSF Scorecard badge link to display the project’s Scorecard status. |
| .github/workflows/openssf-scorecard.yml | Introduces a Scorecard workflow to generate SARIF results and publish them to artifacts and Code Scanning. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+34
to
+54
| permissions: | ||
| actions: read | ||
| artifact-metadata: read | ||
| attestations: read | ||
| checks: read | ||
| code-quality: read | ||
| contents: read | ||
| deployments: read | ||
| issues: read | ||
| models: read | ||
| discussions: read | ||
| packages: read | ||
| pages: read | ||
| pull-requests: read | ||
| statuses: read | ||
| vulnerability-alerts: read | ||
|
|
||
| # Needed for Code scanning upload | ||
| security-events: write | ||
| # Needed for GitHub OIDC token if publish_results is true | ||
| id-token: write |
|
|
||
| # This workflow generates an OpenSSF scorecard report, and uploads the report | ||
| # (i) as an artifact to the actions tab, and (ii) to GitHub's code scanning dashboard | ||
| # Note: This workflow file is a slightly adpated version of |
Comment on lines
+13
to
+17
| push: | ||
| # Only the default branch is supported. | ||
| branches: | ||
| - develop | ||
|
|
michalharakal
approved these changes
Jul 13, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This
PRadds theOpenSSFworkflow to theCI(#813 ), and displays the reuslts in theREADMEas a badge.The
OpenSSFworkflow runs on allpushandpull requests, and also weekly on Saturdays. ThisPRadds an important best practise for security within the FOSS community.