Skip to content

Commit e22ea48

Browse files
committed
Merge branch 'promote-bom-in-readme' of https://github.com/googleapis/google-auth-library-java into promote-bom-in-readme
2 parents ea53f06 + a6adb90 commit e22ea48

File tree

5 files changed

+74
-2
lines changed

5 files changed

+74
-2
lines changed

.github/workflows/members.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{"login":"suztomo"},
3+
{"login":"dangazineu"},
4+
{"login":"ldetmer"},
5+
{"login":"zhumin8"},
6+
{"login":"blakeli0"},
7+
{"login":"lqiu96"},
8+
{"login":"jinseopkim0"},
9+
{"login":"meltsufin"},
10+
{"login":"diegomarquezp"},
11+
{"login":"burkedavison"},
12+
{"login":"mpeddada1"},
13+
{"login":"JoeWang1127"},
14+
{"login":"kmaydeo"},
15+
{"login":"lsirac"},
16+
{"login":"aeitzman"}
17+
]
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: 'multi-approvers'
2+
3+
on:
4+
pull_request:
5+
types:
6+
- 'opened'
7+
- 'edited'
8+
- 'reopened'
9+
- 'synchronize'
10+
- 'ready_for_review'
11+
- 'review_requested'
12+
- 'review_request_removed'
13+
pull_request_review:
14+
types:
15+
- 'submitted'
16+
- 'dismissed'
17+
18+
permissions:
19+
actions: 'write'
20+
contents: 'read'
21+
pull-requests: 'read'
22+
23+
concurrency:
24+
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
25+
cancel-in-progress: true
26+
27+
jobs:
28+
multi-approvers:
29+
uses: 'abcxyz/pkg/.github/workflows/multi-approvers.yml@main'
30+
with:
31+
org-members-path: '.github/workflows/members.json'

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "1.30.1"
3+
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ If you are using Maven, add this to your pom.xml file (notice that you can repla
106106
<dependency>
107107
<groupId>com.google.auth</groupId>
108108
<!-- Let the BOM manage the transitive dependencies and module version. -->
109-
<!-- Replace with the implementation module that suits your needs -->
109+
<!-- Replace with the module(s) that are needed -->
110110
<artifactId>google-auth-library-oauth2-http</artifactId>
111111
</dependency>
112112
```
@@ -119,7 +119,7 @@ If you are using Gradle, add this to your dependencies
119119
dependencies {
120120
// The BOM will manage the module versions and transitive dependencies
121121
implementation platform('com.google.auth:google-auth-library-bom:1.30.1')
122-
// Replace this with the implementation module that suits your needs
122+
// Replace with the module(s) that are needed
123123
implementation 'com.google.auth:google-auth-library-oauth2-http'
124124
}
125125

release-please-config.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"release-type": "java-yoshi-mono-repo",
3+
"separate-pull-requests": false,
4+
"include-component-in-tag": false,
5+
"group-pull-request-title-pattern": "chore(${branch}): release ${version}",
6+
"packages": {
7+
".": {
8+
"changelog-path": "CHANGELOG.md",
9+
"release-type": "java-yoshi",
10+
"bump-minor-pre-major": false,
11+
"bump-patch-for-minor-pre-major": false,
12+
"draft": false,
13+
"prerelease": false,
14+
"extra-files": [
15+
"README.md",
16+
"bom/README.md"
17+
]
18+
}
19+
},
20+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
21+
}

0 commit comments

Comments
 (0)