Skip to content

Commit 8965ee5

Browse files
committed
chore: sync with ecsact_common
1 parent 2677d39 commit 8965ee5

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.2
1+
7.2.0

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ root = true
33
[*]
44
end_of_line = lf
55
insert_final_newline = true
6-

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with: { clang-format-version: "18" }
2626

2727
test-windows:
28-
if: github.event_name == 'merge_group'
28+
if: (github.event_name == 'pull_request' && github.event.pull_request.user.login == 'renovate[bot]') || (github.event_name == 'merge_group' && github.event.pull_request.user.login != 'renovate[bot]')
2929
runs-on: windows-latest
3030
steps:
3131
- uses: actions/cache@v4
@@ -41,7 +41,7 @@ jobs:
4141
working-directory: test
4242

4343
test-linux:
44-
if: github.event_name == 'merge_group'
44+
if: (github.event_name == 'pull_request' && github.event.pull_request.user.login == 'renovate[bot]') || (github.event_name == 'merge_group' && github.event.pull_request.user.login != 'renovate[bot]')
4545
runs-on: ubuntu-latest
4646
steps:
4747
- uses: actions/cache@v4

bazel/common.bazelrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
startup --windows_enable_symlinks
22
common --enable_bzlmod
33
common --registry=https://raw.githubusercontent.com/ecsact-dev/bazel_registry/main
4+
common --registry=https://raw.githubusercontent.com/zaucy/bazel-central-registry/add-curl-config2 # temporary
45
common --registry=https://raw.githubusercontent.com/bazelboost/registry/main
56
common --registry=https://bcr.bazel.build
67
build --enable_platform_specific_config

cog.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
pre_bump_hooks = [
2-
# Ecsact pre 1.0.0 the 0.X.0 is our 'major' version
3-
"buildozer 'set version {{version}}' 'set compatibility_level {{version.minor}}' //MODULE.bazel:%module",
4-
"bazel mod tidy",
2+
# Ecsact pre 1.0.0 the 0.X.0 is our 'major' version
3+
"buildozer 'set version {{version}}' 'set compatibility_level {{version.minor}}' //MODULE.bazel:%module",
4+
"bazel mod tidy",
55
]
66

77
post_bump_hooks = [
8-
"git push",
9-
"git push origin {{version}}",
10-
"gh release create {{version}} --generate-notes --latest -t {{version}} --verify-tag",
8+
"git push",
9+
"git push origin {{version}}",
10+
"gh release create {{version}} --generate-notes --latest -t {{version}} --verify-tag",
1111
]

0 commit comments

Comments
 (0)