-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: stop generating samples ci. update templated renovate (#1280)
We needed to ignore the samples workflow in synth.py
- Loading branch information
Showing
3 changed files
with
63 additions
and
23 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,19 +1,73 @@ | ||
{ | ||
"extends": [ | ||
"config:base" | ||
":separateMajorReleases", | ||
":combinePatchMinorReleases", | ||
":ignoreUnstable", | ||
":prImmediately", | ||
":updateNotScheduled", | ||
":automergeDisabled", | ||
":ignoreModulesAndTests", | ||
":maintainLockFilesDisabled", | ||
":autodetectPinVersions" | ||
], | ||
"packageRules": [ | ||
{ | ||
"packagePatterns": ["^com.google.guava:guava"], | ||
"groupName": "Guava packages" | ||
"packagePatterns": [ | ||
"^com.google.guava:" | ||
], | ||
"versionScheme": "docker" | ||
}, | ||
{ | ||
"packagePatterns": ["^com.google.appengine:appengine-"], | ||
"groupName": "AppEngine packages" | ||
"packagePatterns": [ | ||
"*" | ||
], | ||
"semanticCommitType": "deps", | ||
"semanticCommitScope": null | ||
}, | ||
{ | ||
"packagePatterns": ["^io.opencensus:opencensus-"], | ||
"groupName": "OpenCensus packages" | ||
"packagePatterns": [ | ||
"^org.apache.maven", | ||
"^org.jacoco:", | ||
"^org.codehaus.mojo:", | ||
"^org.sonatype.plugins:", | ||
"^com.coveo:", | ||
"^com.google.cloud:google-cloud-shared-config" | ||
], | ||
"semanticCommitType": "build", | ||
"semanticCommitScope": "deps" | ||
}, | ||
{ | ||
"packagePatterns": [ | ||
"^com.google.http-client:google-http-client", | ||
"^com.google.cloud:libraries-bom", | ||
"^com.google.cloud.samples:shared-configuration" | ||
], | ||
"semanticCommitType": "chore", | ||
"semanticCommitScope": "deps" | ||
}, | ||
{ | ||
"packagePatterns": [ | ||
"^junit:junit", | ||
"^com.google.truth:truth", | ||
"^org.mockito:mockito-core", | ||
"^org.objenesis:objenesis" | ||
], | ||
"semanticCommitType": "test", | ||
"semanticCommitScope": "deps" | ||
}, | ||
{ | ||
"packagePatterns": [ | ||
"^com.google.cloud:google-cloud-" | ||
], | ||
"ignoreUnstable": false | ||
}, | ||
{ | ||
"packagePatterns": [ | ||
"^com.fasterxml.jackson.core" | ||
], | ||
"groupName": "jackson dependencies" | ||
} | ||
] | ||
], | ||
"semanticCommits": true, | ||
"masterIssue": 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