Skip to content

Commit 4da4d29

Browse files
authzedbottstirrat15
authored andcommitted
[create-pull-request] automated change
Add to gitignore, add triggers to workflows
1 parent d1c4306 commit 4da4d29

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ on:
77
pull_request:
88
branches:
99
- "*"
10+
types:
11+
# NOTE: these are the defaults
12+
- opened
13+
- synchronize
14+
- reopened
15+
# NOTE: we add this to let the conversion from draft trigger the workflows
16+
- ready_for_review
1017
merge_group:
1118
types:
1219
- "checks_requested"
@@ -15,7 +22,7 @@ jobs:
1522
runs-on: "ubuntu-latest"
1623
strategy:
1724
matrix:
18-
java: [ 8, 17, 19 ] # Oldest, LTS, Latest
25+
java: [ 8, 21, 24 ] # Oldest, LTS, Latest
1926
name: "Java ${{ matrix.java }} Build"
2027
steps:
2128
- uses: "actions/checkout@v4"

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
.gradle
2+
.idea
23
build
4+
bin
5+
gradle/wrapper
6+
!gradle/wrapper/gradle-wrapper.jar
7+
!gradle/wrapper/gradle-wrapper.properties

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Most commonly, if you are using [Maven] you can add the following to your pom.xm
5151
<dependency>
5252
<groupId>com.authzed.api</groupId>
5353
<artifactId>authzed</artifactId>
54-
<version>1.2.0</version>
54+
<version>1.3.0</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>io.grpc</groupId>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ javadoc { options.addStringOption('Xdoclint:none', '-quiet') }
8585

8686
def grpcVersion = "1.71.0"
8787
def protocVersion = "4.30.2"
88-
def authzedProtoCommit = "v1.40.0"
88+
def authzedProtoCommit = "v1.41.0"
8989
def bufDir = "${buildDir}/buf"
9090
def protocPlatformTag = project.findProperty('protoc_platform') ? ":${protoc_platform}" : ""
9191

0 commit comments

Comments
 (0)