mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-27 12:43:37 +00:00
Enable GITHUB_COM_TOKEN environment variable
When running this action on a private GitHub Enterprise with self-hosted runners and you own analyse a golang project you quickly run into GitHub.com rate-limiting. According to the docs (https://docs.renovatebot.com/self-hosting/#githubcom-token-for-release-notes) we need to add the environment variable `GITHUB_COM_TOKEN` to mitigate this. This was not yet picked up by the docker input parser. This commit will enable `GITHUB_COM_TOKEN` to be used for Renovate.
This commit is contained in:
parent
c812d1d8b8
commit
7a639ea9ac
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ interface EnvironmentVariable {
|
||||||
|
|
||||||
class Input {
|
class Input {
|
||||||
readonly options = {
|
readonly options = {
|
||||||
envRegex: /^(?:RENOVATE_\w+|LOG_LEVEL)$/,
|
envRegex: /^(?:RENOVATE_\w+|LOG_LEVEL|GITHUB_COM_TOKEN)$/,
|
||||||
configurationFile: {
|
configurationFile: {
|
||||||
input: 'configurationFile',
|
input: 'configurationFile',
|
||||||
env: 'RENOVATE_CONFIG_FILE',
|
env: 'RENOVATE_CONFIG_FILE',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue