-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π synced file(s) with upbound/sa-up (#14)
* π synced local 'Makefile' with remote 'shared/configurations/Makefile' * π synced local '.github/workflows' with remote 'shared/configurations/workflows' * π synced local '.github/renovate.json5' with remote 'shared/configurations/renovate.json5' * π synced local '.gitmodules' with remote 'shared/configurations/.gitmodules' * π created local '.github/CODEOWNERS' from remote '.github/CODEOWNERS' --------- Co-authored-by: upbound-bot <null>
- Loading branch information
1 parent
5e7e9db
commit fac3d5d
Showing
7 changed files
with
313 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @upbound/team-solutions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,94 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended", | ||
"helpers:pinGitHubActionDigests", | ||
":semanticCommits" | ||
$schema: 'https://docs.renovatebot.com/renovate-schema.json', | ||
extends: [ | ||
'config:recommended', | ||
'helpers:pinGitHubActionDigests', | ||
':semanticCommits', | ||
], | ||
"rebaseWhen": "conflicted", | ||
"prConcurrentLimit": 5, | ||
"baseBranches": ["main"], | ||
"labels": ["automated"], | ||
"customManagers": [ | ||
rebaseWhen: 'conflicted', | ||
prConcurrentLimit: 5, | ||
baseBranches: [ | ||
'main', | ||
], | ||
labels: [ | ||
'automated', | ||
], | ||
ignorePaths: [ // default renovate ignorePaths without '**/examples/**' | ||
'**/node_modules/**', | ||
'**/bower_components/**', | ||
'**/vendor/**', | ||
'**/__tests__/**', | ||
'**/test/**', | ||
'**/tests/**', | ||
'**/__fixtures__/**' | ||
], | ||
crossplane: { | ||
fileMatch: ['(^|/)examples/.*\\.ya?ml$'] | ||
}, | ||
packageRules: [ | ||
{ | ||
matchFileNames: [ | ||
'.github/**', | ||
], | ||
groupName: 'github-actions dependencies', | ||
}, | ||
{ | ||
"customType": "regex", | ||
"description": "Bump up version in the Makefile", | ||
"fileMatch": ["^Makefile$"], | ||
"matchStrings": [ | ||
"UP_VERSION = (?<currentValue>.*?)\\n" | ||
], | ||
"datasourceTemplate": "github-releases", | ||
"depNameTemplate": "upbound/up", | ||
}, { | ||
"customType": "regex", | ||
"description": "Bump uptest version in the Makefile", | ||
"fileMatch": ["^Makefile$"], | ||
"matchStrings": [ | ||
"UPTEST_VERSION = (?<currentValue>.*?)\\n" | ||
], | ||
"datasourceTemplate": "github-releases", | ||
"depNameTemplate": "upbound/uptest", | ||
}, { | ||
"customType": "regex", | ||
"description": "Bump Crossplane(UXP) version in the Makefile", | ||
"fileMatch": ["^Makefile$"], | ||
"matchStrings": [ | ||
"CROSSPLANE_VERSION = (?<currentValue>.*?)\\n" | ||
], | ||
"datasourceTemplate": "github-releases", | ||
"versioningTemplate": "regex:^v?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)-up.1$", | ||
"extractVersionTemplate": "^v(?<version>.*)$", | ||
"depNameTemplate": "upbound/universal-crossplane", | ||
}, { | ||
"customType": "regex", | ||
"description": "Bump providers/functions/configurations in crossplane.yaml", | ||
"fileMatch": ["crossplane.yaml"], | ||
"matchStrings": [ | ||
"#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s*\\n\\s*version:\\s*\"(?<currentValue>[^\"]+)\"" | ||
], | ||
"datasourceTemplate": "{{{datasource}}}", | ||
"depNameTemplate": "{{{depName}}}", | ||
} | ||
matchFileNames: [ | ||
'crossplane.yaml', | ||
], | ||
groupName: 'crossplane dependencies', | ||
}, | ||
{ | ||
matchFileNames: [ | ||
'Makefile', | ||
], | ||
groupName: 'Makefile dependencies', | ||
}, | ||
{ | ||
matchManagers: ['crossplane'], | ||
matchFileNames: ['examples/**'], | ||
groupName: 'examples' | ||
}, | ||
], | ||
customManagers: [ | ||
{ | ||
customType: 'regex', | ||
description: 'Bump up version in the Makefile', | ||
fileMatch: [ | ||
'^Makefile$', | ||
], | ||
matchStrings: [ | ||
'UP_VERSION = (?<currentValue>.*?)\\n', | ||
], | ||
datasourceTemplate: 'github-releases', | ||
depNameTemplate: 'upbound/up', | ||
}, | ||
{ | ||
customType: 'regex', | ||
description: 'Bump uptest version in the Makefile', | ||
fileMatch: [ | ||
'^Makefile$', | ||
], | ||
matchStrings: [ | ||
'UPTEST_VERSION = (?<currentValue>.*?)\\n', | ||
], | ||
datasourceTemplate: 'github-releases', | ||
depNameTemplate: 'upbound/uptest', | ||
}, | ||
{ | ||
customType: 'regex', | ||
description: 'Bump providers/functions/configurations in crossplane.yaml', | ||
fileMatch: [ | ||
'crossplane.yaml', | ||
], | ||
matchStrings: [ | ||
'#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s*\\n\\s*version:\\s*"(?<currentValue>[^"]+)"', | ||
], | ||
datasourceTemplate: '{{{datasource}}}', | ||
depNameTemplate: '{{{depName}}}', | ||
}, | ||
], | ||
"git-submodules": { | ||
"enabled": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "build"] | ||
path = build | ||
url = https://github.com/crossplane/build | ||
url = https://github.com/crossplane/build.git |
Oops, something went wrong.