-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: move CONTRIBUTING.md to docs (#1971)
- Loading branch information
Showing
6 changed files
with
111 additions
and
106 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,104 +1 @@ | ||
Thank you for taking interest in contributing to Trivy! | ||
|
||
## Issues | ||
- Feel free to open issues for any reason. When you open a new issue, you'll have to select an issue kind: bug/feature/support and fill the required information based on the selected template. | ||
- Please spend a small amount of time giving due diligence to the issue tracker. Your issue might be a duplicate. If it is, please add your comment to the existing issue. | ||
- Remember that users might search for your issue in the future, so please give it a meaningful title to help others. | ||
- The issue should clearly explain the reason for opening, the proposal if you have any, and any relevant technical information. | ||
|
||
## Pull Requests | ||
|
||
1. Every Pull Request should have an associated bug or feature issue unless you are fixing a trivial documentation issue. | ||
4. Please add the associated Issue link in the PR description. | ||
2. Your PR is more likely to be accepted if it focuses on just one change. | ||
5. There's no need to add or tag reviewers. | ||
6. If a reviewer commented on your code or asked for changes, please remember to respond with comment. Do not mark discussion as resolved. It's up to reviewer to mark it resolved (in case if suggested fix addresses problem properly). PRs with unresolved issues should not be merged (even if the comment is unclear or requires no action from your side). | ||
7. Please include a comment with the results before and after your change. | ||
8. Your PR is more likely to be accepted if it includes tests (We have not historically been very strict about tests, but we would like to improve this!). | ||
9. If your PR affects the user experience in some way, please update the README.md and the CLI help accordingly. | ||
|
||
### Title | ||
It is not that strict, but we use the title conventions in this repository. | ||
Each commit message doesn't have to follow the conventions as long as it is clear and descriptive since it will be squashed and merged. | ||
|
||
#### Format of the title | ||
|
||
``` | ||
<type>(<scope>): <subject> | ||
``` | ||
|
||
The `type` and `scope` should always be lowercase as shown below. | ||
|
||
**Allowed `<type>` values:** | ||
- **feat** for a new feature for the user, not a new feature for build script. Such commit will trigger a release bumping a MINOR version. | ||
- **fix** for a bug fix for the user, not a fix to a build script. Such commit will trigger a release bumping a PATCH version. | ||
- **perf** for performance improvements. Such commit will trigger a release bumping a PATCH version. | ||
- **docs** for changes to the documentation. | ||
- **style** for formatting changes, missing semicolons, etc. | ||
- **refactor** for refactoring production code, e.g. renaming a variable. | ||
- **test** for adding missing tests, refactoring tests; no production code change. | ||
- **build** for updating build configuration, development tools or other changes irrelevant to the user. | ||
- **chore** for updates that do not apply to the above, such as dependency updates. | ||
|
||
**Example `<scope>` values:** | ||
- alpine | ||
- redhat | ||
- ruby | ||
- python | ||
- terraform | ||
- report | ||
- etc. | ||
|
||
The `<scope>` can be empty (e.g. if the change is a global or difficult to assign to a single component), in which case the parentheses are omitted. | ||
|
||
#### Example titles | ||
|
||
``` | ||
feat(alma): add support for AlmaLinux | ||
``` | ||
|
||
``` | ||
fix(oracle): handle advisories with ksplice versions | ||
``` | ||
|
||
``` | ||
docs(misconf): add comparison with Conftest and TFsec | ||
``` | ||
|
||
``` | ||
chore(deps): bump go.uber.org/zap from 1.19.1 to 1.20.0 | ||
``` | ||
|
||
**NOTE**: please do not use `chore(deps): update fanal` and something like that if you add new features or fix bugs in Trivy-related projects. | ||
The PR title should describe what the PR adds or fixes even though it just updates the dependency in Trivy. | ||
|
||
### Unit tests | ||
Your PR must pass all the unit tests. You can test it as below. | ||
|
||
``` | ||
$ make test | ||
``` | ||
|
||
### Integration tests | ||
Your PR must pass all the integration tests. You can test it as below. | ||
|
||
``` | ||
$ make test-integration | ||
``` | ||
|
||
### Documentation | ||
You can build the documents as below and view it at http://localhost:8000. | ||
|
||
``` | ||
$ make mkdocs-serve | ||
``` | ||
|
||
## Understand where your pull request belongs | ||
|
||
Trivy is composed of several different repositories that work together: | ||
|
||
- [Trivy](https://github.com/aquasecurity/trivy) is the client-side, user-facing, command line tool. | ||
- [vuln-list](https://github.com/aquasecurity/vuln-list) is a vulnerabilities database, aggregated from different sources, and normalized for easy consumption. Think of this as the "server" side of the trivy command line tool. **There should be no pull requests to this repo** | ||
- [vuln-list-update](https://github.com/aquasecurity/vuln-list-update) is the code that maintains the vuln-list database. | ||
- [trivy-db](https://github.com/aquasecurity/trivy-db) maintains the vulnerability database pulled by Trivy CLI. | ||
- [fanal](https://github.com/aquasecurity/fanal) is a library for extracting system information from containers. It is being used by Trivy to find testable subjects in the container image. | ||
See [Issues](https://aquasecurity.github.io/trivy/latest/community/contribute/issue/) and [Pull Requests](https://aquasecurity.github.io/trivy/latest/community/contribute/pr/) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Thank you for taking interest in contributing to Trivy! | ||
|
||
- Feel free to open issues for any reason. When you open a new issue, you'll have to select an issue kind: bug/feature/support and fill the required information based on the selected template. | ||
- Please spend a small amount of time giving due diligence to the issue tracker. Your issue might be a duplicate. If it is, please add your comment to the existing issue. | ||
- Remember that users might search for your issue in the future, so please give it a meaningful title to help others. | ||
- The issue should clearly explain the reason for opening, the proposal if you have any, and any relevant technical information. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
Thank you for taking interest in contributing to Trivy! | ||
|
||
1. Every Pull Request should have an associated bug or feature issue unless you are fixing a trivial documentation issue. | ||
1. Please add the associated Issue link in the PR description. | ||
1. Your PR is more likely to be accepted if it focuses on just one change. | ||
1. There's no need to add or tag reviewers. | ||
1. If a reviewer commented on your code or asked for changes, please remember to respond with comment. Do not mark discussion as resolved. It's up to reviewer to mark it resolved (in case if suggested fix addresses problem properly). PRs with unresolved issues should not be merged (even if the comment is unclear or requires no action from your side). | ||
1. Please include a comment with the results before and after your change. | ||
1. Your PR is more likely to be accepted if it includes tests (We have not historically been very strict about tests, but we would like to improve this!). | ||
1. If your PR affects the user experience in some way, please update the README.md and the CLI help accordingly. | ||
|
||
### Title | ||
It is not that strict, but we use the title conventions in this repository. | ||
Each commit message doesn't have to follow the conventions as long as it is clear and descriptive since it will be squashed and merged. | ||
|
||
#### Format of the title | ||
|
||
``` | ||
<type>(<scope>): <subject> | ||
``` | ||
|
||
The `type` and `scope` should always be lowercase as shown below. | ||
|
||
**Allowed `<type>` values:** | ||
|
||
- **feat** for a new feature for the user, not a new feature for build script. Such commit will trigger a release bumping a MINOR version. | ||
- **fix** for a bug fix for the user, not a fix to a build script. Such commit will trigger a release bumping a PATCH version. | ||
- **perf** for performance improvements. Such commit will trigger a release bumping a PATCH version. | ||
- **docs** for changes to the documentation. | ||
- **style** for formatting changes, missing semicolons, etc. | ||
- **refactor** for refactoring production code, e.g. renaming a variable. | ||
- **test** for adding missing tests, refactoring tests; no production code change. | ||
- **build** for updating build configuration, development tools or other changes irrelevant to the user. | ||
- **chore** for updates that do not apply to the above, such as dependency updates. | ||
|
||
**Example `<scope>` values:** | ||
|
||
- alpine | ||
- redhat | ||
- ruby | ||
- python | ||
- terraform | ||
- report | ||
- etc. | ||
|
||
The `<scope>` can be empty (e.g. if the change is a global or difficult to assign to a single component), in which case the parentheses are omitted. | ||
|
||
#### Example titles | ||
|
||
``` | ||
feat(alma): add support for AlmaLinux | ||
``` | ||
|
||
``` | ||
fix(oracle): handle advisories with ksplice versions | ||
``` | ||
|
||
``` | ||
docs(misconf): add comparison with Conftest and TFsec | ||
``` | ||
|
||
``` | ||
chore(deps): bump go.uber.org/zap from 1.19.1 to 1.20.0 | ||
``` | ||
|
||
**NOTE**: please do not use `chore(deps): update fanal` and something like that if you add new features or fix bugs in Trivy-related projects. | ||
The PR title should describe what the PR adds or fixes even though it just updates the dependency in Trivy. | ||
|
||
### Unit tests | ||
Your PR must pass all the unit tests. You can test it as below. | ||
|
||
``` | ||
$ make test | ||
``` | ||
|
||
### Integration tests | ||
Your PR must pass all the integration tests. You can test it as below. | ||
|
||
``` | ||
$ make test-integration | ||
``` | ||
|
||
### Documentation | ||
You can build the documents as below and view it at http://localhost:8000. | ||
|
||
``` | ||
$ make mkdocs-serve | ||
``` | ||
|
||
## Understand where your pull request belongs | ||
|
||
Trivy is composed of several repositories that work together: | ||
|
||
- [Trivy](https://github.com/aquasecurity/trivy) is the client-side, user-facing, command line tool. | ||
- [vuln-list](https://github.com/aquasecurity/vuln-list) is a vulnerabilities database, aggregated from different sources, and normalized for easy consumption. Think of this as the "server" side of the trivy command line tool. **There should be no pull requests to this repo** | ||
- [vuln-list-update](https://github.com/aquasecurity/vuln-list-update) is the code that maintains the vuln-list database. | ||
- [trivy-db](https://github.com/aquasecurity/trivy-db) maintains the vulnerability database pulled by Trivy CLI. | ||
- [fanal](https://github.com/aquasecurity/fanal) is a library for extracting system information from containers. It is being used by Trivy to find testable subjects in the container image. | ||
- [go-dep-parser](https://github.com/aquasecurity/go-dep-parser) is a library for parsing lock files such as package-lock.json and Gemfile.lock. |
File renamed without changes.
File renamed without changes.
This file contains 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