mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-16 17:02:36 +00:00
* chore: simplify workflows * chore: only build on master and renovate breanches * chore: rename jobs * chore: cancel previous builds * chore: testing * chore: update config * chore: add tests * chore: update renovate * chore: simplify entrypoint * chore: pass to default entrypoint * chore: include forks * fix: wrong home * chore: update config * fix: set renovate token in command rather than exporting Co-authored-by: Jeroen de Bruijn <vidavidorra+jdbruijn@gmail.com>
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"extends": [
|
|
"config:base",
|
|
":rebaseStalePrs",
|
|
":pinDependencies",
|
|
":masterIssue",
|
|
":timezone(Europe/Amsterdam)",
|
|
":assignee(vidavidorra)",
|
|
"docker:enableMajor"
|
|
],
|
|
"prCreation": "not-pending",
|
|
"schedule": ["before 6am"],
|
|
"lockFileMaintenance": {
|
|
"enabled": true,
|
|
"schedule": ["at any time"],
|
|
"masterIssueApproval": true
|
|
},
|
|
"major": {
|
|
"stabilityDays": 3,
|
|
"masterIssueApproval": true
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"languages": ["docker"],
|
|
"paths": ["src/**/?(*.)Dockerfile"],
|
|
"semanticCommitType": "fix"
|
|
},
|
|
{
|
|
"description": "Automerge devDependencies updates",
|
|
"depTypeList": ["devDependencies"],
|
|
"updateTypes": ["pin", "digest", "patch", "minor"],
|
|
"schedule": ["at any time"],
|
|
"automerge": true,
|
|
"automergeType": "branch"
|
|
},
|
|
{
|
|
"description": "Automerge renovate minor and patch updates",
|
|
"packageNames": ["renovate/renovate"],
|
|
"updateTypes": ["minor", "patch"],
|
|
"schedule": ["at any time"],
|
|
"automerge": true,
|
|
"automergeType": "branch"
|
|
}
|
|
]
|
|
}
|