Skip to content

Commit

Permalink
fix: remove internalChecksAsSuccess (#896)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusrbrown authored Dec 19, 2023
1 parent 31e474a commit 7ff5651
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ name: CI

'on':
push:
branches: [main]
branches: [main, 'renovate/**']
pull_request:
types: [opened, synchronize]
workflow_dispatch:
inputs:
dry_run:
Expand Down
5 changes: 2 additions & 3 deletions default.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@
"github>bfra-me/renovate-config:automerge",
"github>bfra-me/renovate-config:group",
"github>bfra-me/renovate-config:replacements",
"github>bfra-me/renovate-config:maintenance",
"github>bfra-me/renovate-config:vendors"
"github>bfra-me/renovate-config:maintenance#v2.3.0",
"github>bfra-me/renovate-config:vendors#v2.3.0"
],

"commitMessageLowerCase": "never",

"internalChecksFilter": "strict",
"transitiveRemediation": true,

"postUpdateOptions": [
Expand Down
8 changes: 4 additions & 4 deletions maintenance.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
":prNotPending",
":prHourlyLimitNone",
":updateNotScheduled",
"github>bfra-me/renovate-config:maintenance/security"
"github>bfra-me/renovate-config:maintenance/security#v2.3.0"
],
"addLabels": ["dependencies"],

Expand All @@ -15,7 +15,6 @@

"dependencyDashboardTitle": "Renovate Dashboard",

"internalChecksAsSuccess": true,
"prConcurrentLimit": 5,
"recreateClosed": true,

Expand All @@ -26,7 +25,7 @@

"timezone": "America/Phoenix",

"default": {"extends": ["github>bfra-me/renovate-config:maintenance"]},
"default": {"extends": ["github>bfra-me/renovate-config:maintenance#v2.3.0"]},

"dashboardApprovalForMajorUpdates": {
"description": "Enable dependency dashboard approval for major updates.",
Expand All @@ -44,6 +43,7 @@
"packageRules": [
{
"extends": ["helpers:pinGitHubActionDigests"],
"excludeDepNames": ["elstudio/actions-settings", "exivity/actions"],
"extractVersion": "^(?<version>v?\\d+\\.\\d+\\.\\d+)$",
"versioning": "regex:^v?(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))?$"
}
Expand All @@ -66,7 +66,7 @@
"prBodyDefinitions": {
"Change": "All lock files updated (every Monday before 6 AM)"
},
"extends": ["github>bfra-me/renovate-config:automerge/enabled"]
"extends": ["github>bfra-me/renovate-config:automerge/enabled#v2.3.0"]
}
},

Expand Down
9 changes: 5 additions & 4 deletions vendors.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Use default vendor config presets.",
"extends": [
"github>bfra-me/renovate-config:vendors/bfra-me",
"github>bfra-me/renovate-config:vendors/exivity"
"github>bfra-me/renovate-config:vendors/bfra-me#v2.3.0",
"github>bfra-me/renovate-config:vendors/exivity#v2.3.0"
],

"default": {
"extends": "github>bfra-me/renovate-config:vendors"
"extends": "github>bfra-me/renovate-config:vendors#v2.3.0"
},

"bfra-me": {
Expand Down Expand Up @@ -54,7 +54,8 @@
"autoReplaceStringTemplate": "uses: {{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # {{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}",
"packageNameTemplate": "https://github.com/elstudio/actions-settings",
"depTypeTemplate": "action",
"datasourceTemplate": "git-refs"
"datasourceTemplate": "git-refs",
"versioningTemplate": "git"
}
]
},
Expand Down

0 comments on commit 7ff5651

Please sign in to comment.