Skip to content

Commit 4daf479

Browse files
authored
Add a disable_remediation configuration field (#15170)
1 parent 1d0f105 commit 4daf479

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

docs/getting-started/new_project_guide.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ This configuration file stores project metadata. The following attributes are su
8686
- [help_url](#help_url) (optional)
8787
- [builds_per_day](#build_frequency) (optional)
8888
- [file_github_issue](#file_github_issue) (optional)
89+
- [disable_remediation](#disable_remediation) (optional)
8990

9091
### homepage
9192
You project's homepage.
@@ -210,6 +211,13 @@ Will build the project twice per day.
210211
Whether to mirror issues on github instead of having them only in the OSS-Fuzz
211212
tracker.
212213

214+
### disable_remediation (optional) {#disable_remediation}
215+
Opt out of receiving remediation for all new and existing bugs. If remediation
216+
is disabled, all disclosure notifications will not include any proposed code
217+
changes. If enabled (default), proposed code changes and comments to remediate
218+
bugs may be automatically included in disclosure that is private during the
219+
embargo of each issue on a case-by-case basis basis.
220+
213221
## Dockerfile {#dockerfile}
214222

215223
This configuration file defines the Docker image for your project. Your [build.sh](#buildsh) script will be executed in inside the container you define.

infra/presubmit.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ class ProjectYamlChecker:
9090
'builds_per_day',
9191
'coverage_extra_args',
9292
'disabled',
93+
'disable_remediation',
9394
'fuzzing_engines',
9495
'help_url',
9596
'homepage',

0 commit comments

Comments
 (0)