Skip to content

Commit d7335a0

Browse files
mpeddada1alicejligcf-owl-bot[bot]
authored
chore: mark native image checks as required (#129)
* 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>
1 parent 09b2226 commit d7335a0

2 files changed

Lines changed: 26 additions & 24 deletions

File tree

Lines changed: 23 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Whether or not rebase-merging is enabled on this repository.
32
# Defaults to `true`
43
rebaseMergeAllowed: false
@@ -15,33 +14,36 @@ mergeCommitAllowed: false
1514
branchProtectionRules:
1615
# Identifies the protection rule pattern. Name of the branch to be protected.
1716
# Defaults to `main`
18-
- pattern: main
17+
- pattern: main
1918
# Can admins overwrite branch protection.
2019
# Defaults to `true`
21-
isAdminEnforced: true
20+
isAdminEnforced: true
2221
# Number of approving reviews required to update matching branches.
2322
# Defaults to `1`
24-
requiredApprovingReviewCount: 1
23+
requiredApprovingReviewCount: 1
2524
# Are reviews from code owners required to update matching branches.
2625
# Defaults to `false`
27-
requiresCodeOwnerReviews: true
26+
requiresCodeOwnerReviews: true
2827
# Require up to date branches
29-
requiresStrictStatusChecks: false
28+
requiresStrictStatusChecks: false
3029
# List of required status check contexts that must pass for commits to be accepted to matching branches.
31-
requiredStatusCheckContexts:
32-
- "dependencies (8)"
33-
- "dependencies (11)"
34-
- "lint"
35-
- "units (8)"
36-
- "units (11)"
37-
- "Kokoro - Test: Integration"
38-
- "cla/google"
39-
- OwlBot Post Processor
30+
requiredStatusCheckContexts:
31+
- dependencies (8)
32+
- dependencies (11)
33+
- lint
34+
- clirr
35+
- units (8)
36+
- units (11)
37+
- 'Kokoro - Test: Integration'
38+
- cla/google
39+
- OwlBot Post Processor
40+
- 'Kokoro - Test: Java GraalVM Native Image'
41+
- 'Kokoro - Test: Java 17 GraalVM Native Image'
4042
# List of explicit permissions to add (additive only)
4143
permissionRules:
42-
- team: yoshi-admins
43-
permission: admin
44-
- team: yoshi-java-admins
45-
permission: admin
46-
- team: yoshi-java
47-
permission: push
44+
- team: yoshi-admins
45+
permission: admin
46+
- team: yoshi-java-admins
47+
permission: admin
48+
- team: yoshi-java
49+
permission: push

‎java-deploy/README.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-deploy</artifactId>
22-
<version>1.1.1</version>
22+
<version>1.1.2</version>
2323
</dependency>
2424
```
2525

2626
If you are using Gradle without BOM, add this to your dependencies
2727

2828
```Groovy
29-
implementation 'com.google.cloud:google-cloud-deploy:1.1.1'
29+
implementation 'com.google.cloud:google-cloud-deploy:1.1.2'
3030
```
3131

3232
If you are using SBT, add this to your dependencies
3333

3434
```Scala
35-
libraryDependencies += "com.google.cloud" % "google-cloud-deploy" % "1.1.1"
35+
libraryDependencies += "com.google.cloud" % "google-cloud-deploy" % "1.1.2"
3636
```
3737

3838
## Authentication

0 commit comments

Comments
 (0)