Skip to content
Snippets Groups Projects
Commit cab66158 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

feat: make gitAuthor admin-only

Changes gitAuthor to be an admin-only setting, i.e. configurable by bot admin and not by repo admin.

BREAKING CHANGE: gitAuthor can no longer be configured in repository config and can be set by bot admin only.
parent 25a6439b
No related branches found
No related tags found
No related merge requests found
...@@ -271,6 +271,7 @@ const options = [ ...@@ -271,6 +271,7 @@ const options = [
name: 'gitAuthor', name: 'gitAuthor',
description: 'Author to use for git commits. RFC5322', description: 'Author to use for git commits. RFC5322',
type: 'string', type: 'string',
admin: true,
}, },
{ {
name: 'gitPrivateKey', name: 'gitPrivateKey',
......
...@@ -197,10 +197,6 @@ See https://renovatebot.com/docs/configuration-reference/config-presets for deta ...@@ -197,10 +197,6 @@ See https://renovatebot.com/docs/configuration-reference/config-presets for deta
## fileMatch ## fileMatch
## gitAuthor
RFC5322-compliant string if you wish to customise the git author for commits.
## group ## group
The default configuration for groups are essentially internal to Renovate and you normally shouldn't need to modify them. However, you may choose to _add_ settings to any group by defining your own `group` configuration object. The default configuration for groups are essentially internal to Renovate and you normally shouldn't need to modify them. However, you may choose to _add_ settings to any group by defining your own `group` configuration object.
......
...@@ -29,6 +29,10 @@ This is set to true by default, meaning that any settings (such as `schedule`) t ...@@ -29,6 +29,10 @@ This is set to true by default, meaning that any settings (such as `schedule`) t
You probably have no need for this option - it is an experimental setting for the Renovate hosted GitHub App. You probably have no need for this option - it is an experimental setting for the Renovate hosted GitHub App.
## gitAuthor
RFC5322-compliant string if you wish to customise the git author for commits.
## gitPrivateKey ## gitPrivateKey
## logFile ## logFile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment