add token
Some checks failed
renovate / renovate (push) Failing after 1m39s

This commit is contained in:
Brandon Egger 2024-05-16 18:12:28 -05:00
parent 2199045044
commit 5b620ecf05
2 changed files with 10 additions and 1 deletions

View File

@ -17,4 +17,5 @@ jobs:
env:
RENOVATE_CONFIG_FILE: "/workspace/seatstock/renovate-config/config.js" # config.js path (root of repository)
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # token for "renovate" user
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # token for "renovate" user
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}

View File

@ -5,4 +5,12 @@ module.exports = {
"onboardingConfigFileName": "renovate.json",
"autodiscover": true,
"optimizeForDisabled": true,
"hostRules": [
{
"encrypted": {
"token": process.env.GITHUB_COM_TOKEN,
},
"matchHost": "github.com"
}
]
};