From d7335a00eadd85630ef121b9abf68e5bed326093 Mon Sep 17 00:00:00 2001 From: Mridula <66699525+mpeddada1@users.noreply.github.com> Date: Thu, 7 Jul 2022 12:58:49 -0400 Subject: [PATCH] chore: mark native image checks as required (#129) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: add native image checks as required * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Alice <65933803+alicejli@users.noreply.github.com> Co-authored-by: Owl Bot --- java-deploy/.github/sync-repo-settings.yaml | 44 +++++++++++---------- java-deploy/README.md | 6 +-- 2 files changed, 26 insertions(+), 24 deletions(-) diff --git a/java-deploy/.github/sync-repo-settings.yaml b/java-deploy/.github/sync-repo-settings.yaml index 7f9a2ddac23b..af3513053758 100644 --- a/java-deploy/.github/sync-repo-settings.yaml +++ b/java-deploy/.github/sync-repo-settings.yaml @@ -1,4 +1,3 @@ - # Whether or not rebase-merging is enabled on this repository. # Defaults to `true` rebaseMergeAllowed: false @@ -15,33 +14,36 @@ mergeCommitAllowed: false branchProtectionRules: # Identifies the protection rule pattern. Name of the branch to be protected. # Defaults to `main` -- pattern: main + - pattern: main # Can admins overwrite branch protection. # Defaults to `true` - isAdminEnforced: true + isAdminEnforced: true # Number of approving reviews required to update matching branches. # Defaults to `1` - requiredApprovingReviewCount: 1 + requiredApprovingReviewCount: 1 # Are reviews from code owners required to update matching branches. # Defaults to `false` - requiresCodeOwnerReviews: true + requiresCodeOwnerReviews: true # Require up to date branches - requiresStrictStatusChecks: false + requiresStrictStatusChecks: false # List of required status check contexts that must pass for commits to be accepted to matching branches. - requiredStatusCheckContexts: - - "dependencies (8)" - - "dependencies (11)" - - "lint" - - "units (8)" - - "units (11)" - - "Kokoro - Test: Integration" - - "cla/google" - - OwlBot Post Processor + requiredStatusCheckContexts: + - dependencies (8) + - dependencies (11) + - lint + - clirr + - units (8) + - units (11) + - 'Kokoro - Test: Integration' + - cla/google + - OwlBot Post Processor + - 'Kokoro - Test: Java GraalVM Native Image' + - 'Kokoro - Test: Java 17 GraalVM Native Image' # List of explicit permissions to add (additive only) permissionRules: -- team: yoshi-admins - permission: admin -- team: yoshi-java-admins - permission: admin -- team: yoshi-java - permission: push + - team: yoshi-admins + permission: admin + - team: yoshi-java-admins + permission: admin + - team: yoshi-java + permission: push diff --git a/java-deploy/README.md b/java-deploy/README.md index bb4adb402e0d..378edcaf116d 100644 --- a/java-deploy/README.md +++ b/java-deploy/README.md @@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file: com.google.cloud google-cloud-deploy - 1.1.1 + 1.1.2 ``` If you are using Gradle without BOM, add this to your dependencies ```Groovy -implementation 'com.google.cloud:google-cloud-deploy:1.1.1' +implementation 'com.google.cloud:google-cloud-deploy:1.1.2' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-deploy" % "1.1.1" +libraryDependencies += "com.google.cloud" % "google-cloud-deploy" % "1.1.2" ``` ## Authentication