Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions schemas/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
"type": "string"
},
"skip-snapshot": {
"description": "If set, do not propose snapshot pull requests. Used by `java` strategies.",
"description": "If set, do not propose snapshot pull requests. Used by `java` strategies. Defaults to `false`.",
"type": "boolean"
},
"initial-version": {
Expand All @@ -257,6 +257,18 @@
"component-no-space": {
"description": "release-please automatically adds ` ` (space) in front of parsed ${component}. This option indicates whether that behaviour should be disabled. Defaults to `false`",
"type": "boolean"
},
"include-commit-authors": {
"description": "Include commit authors in changelog entries (e.g. `(@username)`). Defaults to `false`.",
"type": "boolean"
},
"component": {
"description": "Name of the component for this package. Used in the release pull request title and tag.",
"type": "string"
},
"package-name": {
"description": "The name of the package to use when determining the version to release. For Python, this is the distribution name (e.g. from pyproject.toml).",
"type": "string"
}
}
}
Expand Down Expand Up @@ -501,6 +513,10 @@
"snapshot-label": true,
"initial-version": true,
"exclude-paths": true,
"component-no-space": false
"component-no-space": false,
"include-commit-authors": true,
"component": true,
"package-name": true,
"skip-snapshot": true
}
}
Loading