Skip to content

Commit

Permalink
chore: mark native image checks as required (#129)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Jul 7, 2022
1 parent 09b2226 commit d7335a0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 24 deletions.
44 changes: 23 additions & 21 deletions java-deploy/.github/sync-repo-settings.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# Whether or not rebase-merging is enabled on this repository.
# Defaults to `true`
rebaseMergeAllowed: false
Expand All @@ -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
6 changes: 3 additions & 3 deletions java-deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-deploy</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
</dependency>
```

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
Expand Down

0 comments on commit d7335a0

Please sign in to comment.