Thank you for contributing your time and expertise to the OpenSSF Scorecard project. This document describes the contribution guidelines for the project.
Important
Before you start contributing, you must read and abide by our Code of Conduct.
Additionally the Linux Foundation (LF) requires all contributions include per-commit sign-offs.
Ensure you use the -s
or --signoff
flag for every commit.
For more details, see the LF DCO wiki or this Pi-hole signoff guide.
- Contributing code
- Contributing steps
- How to build scorecard locally
- PR Process
- What to do before submitting a pull request
- Changing Score Results
- Linting
- Permission for GitHub personal access tokens
- Adding New Probes
- Where the CI Tests are configured
- dailyscore-cronjob
- How do I add additional GitHub repositories to be scanned by scorecard dailyscore?
- Adding New Checks
- Updating Docs
- Choosing checks to run
- Create a GitHub account
- Create a personal access token
- Set up your development environment
You must install these tools:
-
git
: For source control -
protoc
:v3
or higher -
make
: You can build and run Scorecard without it, but some tasks are easier if you have it.
You may need these tools for some tasks:
docker
:v18.9
or higher.
If you're unfamiliar with the language, there are plenty of articles, resources, and books. We recommend starting with several resources from the official Go website:
- Identify an existing issue you would like to work on, or submit an issue describing your proposed change to the repo in question.
- The repo owners will respond to your issue promptly.
- Fork the desired repo, develop and test your code changes.
- Submit a pull request.
Note that, by building Scorecard from the source code we are allowed to test the changes made locally.
- Clone your fork of the project locally. (Detailed instructions)
- Enter the project folder by running the command
cd ./scorecard
- Install the build tools for the project by running the command
make install
- Run the command
make build
to build the source code
In the project folder, run the following command:
# Get scores for a repository
go run main.go --repo=github.com/ossf-tests/scorecard-check-branch-protection-e2e
Many developers prefer working with the JSON output format, although you may need to pretty print it. Piping the output to jq is one way of doing this.
# Get scores for a repository
go run main.go --repo=github.com/ossf-tests/scorecard-check-branch-protection-e2e --format json | jq
To view all Scorecard commands and flags run:
# View scorecard help
go run main.go --help
You should familiarize yourself with:
--repo
and--local
to specify a repository--checks
and--probes
to specify which analyses run--format
to change the result output format--show-details
is pretty self explanatory
You can use the --checks
option to select which checks to run.
This is useful if, for example, you only want to run the check you're
currently developing.
# Get score for Pinned-Dependencies check
go run main.go --repo=github.com/ossf-tests/scorecard-check-branch-protection-e2e --checks=Pinned-Dependencies
# Get score for Pinned-Dependencies and Binary-Artifacts check
go run main.go --repo=github.com/ossf-tests/scorecard-check-branch-protection-e2e --checks=Pinned-Dependencies,Binary-Artifacts
Every PR should be annotated with an icon indicating whether it's a:
- Breaking change:
⚠️ (:warning:
) - Non-breaking feature: ✨ (
:sparkles:
) - Patch fix: 🐛 (
:bug:
) - Documentation changes (user or developer): 📖 (
:book:
) - Infra/Tests/Other: 🌱 (
:seedling:
) - No release note: 👻 (
:ghost:
)
Use 👻 (no release note) only for the PRs that change or revert unreleased changes, which don't deserve a release note. Please don't abuse it.
Prefer using the :xyz:
aliases over the equivalent emoji directly when possible.
Individual commits should not be tagged separately, but will generally be assumed to match the PR. For instance, if you have a bugfix in with a breaking change, it's generally encouraged to submit the bugfix separately, but if you must put them in one PR, you should mark the whole PR as breaking.
Note
Once a maintainer reviews your code, please address feedback without rebasing when possible.
This includes synchronizing your PR
with main
. The GitHub review experience is much nicer with traditional merge commits.
Following the targets that can be used to test your changes locally.
Command | Description | Is called in the CI? |
---|---|---|
make all |
Runs go test,golangci lint checks, fmt, go mod tidy | yes |
make e2e-pat |
Runs e2e tests | yes |
When developing locally, the following targets are useful to run frequently.
While they are included in make all
, running them individually is faster.
Command | Description | Called in the CI? |
---|---|---|
make unit-test |
Runs unit tests only | yes |
make check-linter |
Checks linter issues only | yes |
As a general rule of thumb, pull requests that change Scorecard score results will need a good reason to do so to get merged. It is a good idea to discuss such changes in a GitHub issue before implementing them.
Most linter issues can be fixed with golangci-lint
with the following command:
make fix-linter
For public repos, classic personal access tokens need the following scopes:
public_repo
- Read/write access to public repositories. Needed for branch protection
- See the action files to check its tests, and the scripts used on it.
Scorecard maintains the list of GitHub repositories in a file https://github.com/ossf/scorecard/blob/main/cron/internal/data/projects.csv
GitLab repositories are listed in: https://github.com/ossf/scorecard/blob/main/cron/internal/data/gitlab-projects.csv
Append your desired repositories to the end of these files, then run make add-projects
.
Commit the changes, and submit a PR and scorecard would start scanning in subsequent runs.
See checks/write.md. When you add new checks, you need to also update the docs.
See probes/README.md for information about the probes.
A summary for each check needs to be included in the README.md
.
In most cases, to update the documentation simply edit the corresponding
.md
file, with the notable exception of the auto-generated file checks.md
.
Important
DO NOT edit docs/checks.md
directly, as that is an
auto-generated file. Edit docs/checks/internal/checks.yaml
instead.
Details about each check need to be provided in docs/checks/internal/checks.yaml. If you want to update its documentation:
- Make your edits in
docs/checks/internal/checks.yaml
. - Regenerate
docs/checks.md
by runningmake generate-docs
- Commit both
docs/checks/internal/checks.yaml
anddocs/checks.md