Skip to content

Commit 4578249

Browse files
committed
fix (build): Bazel Steward better group PRs, exclude (no) WORKSPACE, re-config git name & email
1 parent fcc1eb4 commit 4578249

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.bazel-steward.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pull-requests:
2323
- group-id: google-auto-service
2424
dependencies: "com.google.auto.service:*"
2525
- group-id: grpc
26-
dependencies: "io.grpc:*"
26+
dependencies: "com.google.api.grpc:*"
2727
- group-id: opentelemetry
2828
dependencies: "io.opentelemetry:*"
2929
- group-id: jackson
@@ -32,7 +32,7 @@ pull-requests:
3232
dependencies: "org.junit.jupiter:*"
3333
- group-id: junit5-platform
3434
dependencies: "org.junit.platform:*"
35-
- group-id: maven
35+
- group-id: maven-resolver
3636
dependencies: "org.apache.maven.resolver:*"
3737

3838
# https://virtuslab.github.io/bazel-steward/docs/configuration/configuration-file/maven.html
@@ -51,7 +51,7 @@ post-update-hooks:
5151
# - "**/BUILD.bazel"
5252
- "MODULE.bazel"
5353
- "MODULE.bazel.lock"
54-
- "WORKSPACE"
54+
# - "WORKSPACE"
5555
- "WORKSPACE.bazel"
5656
run-for: pull-request
5757
commit-message: "clean(deps): Buildifieraroo"

.github/workflows/bazel-steward.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,13 @@ jobs:
4343
run: |
4444
go install github.com/bazelbuild/buildtools/buildifier@latest
4545
echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
46-
47-
git config --global user.name "Bazel Steward 🤵"
48-
git config --global user.email "[email protected]"
4946
- uses: actions/checkout@v4
5047
with:
5148
fetch-depth: 0
49+
- name: Configure steward@ Git User
50+
run: |
51+
git config user.name "Bazel Steward 🤵"
52+
git config user.email "[email protected]"
5253
- uses: VirtusLab/[email protected]
5354
# NB: Cannot use hash instead of version here due to
5455
# TODO https://github.com/VirtusLab/bazel-steward/issues/414.

0 commit comments

Comments
 (0)