Thank you for contributing your time and expertise to the OpenSSF Scorecard project. This document describes the contribution guidelines for the project.
Note: Before you start contributing, you must read and abide by our Code of Conduct.
- Contributing code
- Contributing steps
- Error handling
- How to build scorecard locally
- PR Process
- What to do before submitting a pull request
- Permission for GitHub personal access tokens
- 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:
- 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.
See errors.
Note that, by building the scorecard from the source code we are allowed to test the changes made locally.
- Run the following command to clone your fork of the project locally
git clone [email protected]:<user>/scorecard.git $GOPATH/src/github.com/<user>/scorecard.git
- Enter the project folder by running the command
cd ./scorecard
- Ensure you activate module support before continue (
$ export GO111MODULE=on
) - 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
You can input the repository you want to analyze using the --repo=<your_repo>
flag. To view more Scorecard commands run:
// View scorecard help
$ go run main.go --help
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:
) - Docs: 📖 (
: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.
You are free to use the :xyz:
aliases or to use the equivalent emoji directly.
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.
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 |
Make sure to signoff your commits before submitting a pull request.
https://docs.pi-hole.net/guides/github/how-to-signoff/
The personal access token need the following scopes:
repo:status
- Access commit statusrepo_deployment
- Access deployment statuspublic_repo
- Access public repositories
- See the action files to check its tests, and the scripts used on it.
Scorecard maintains the list of repositories in a file https://github.com/ossf/scorecard/blob/main/cron/internal/data/projects.csv
Submit a PR for this file and scorecard would start scanning in subsequent runs.
See checks/write.md. When you add new checks, you need to also update the docs.
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
.
Details about each check need to be provided in
docs/checks/internal/checks.yaml.
If you want to update its documentation, update that checks.yaml
file.
Whenever you modify the checks.yaml
file, run the following to
generate docs/checks.md
:
make generate-docs
DO NOT edit docs/checks.md
directly, as that is an
auto-generated file. Edit docs/checks/internal/checks.yaml
instead.