File tree Expand file tree Collapse file tree 7 files changed +35
-17
lines changed Expand file tree Collapse file tree 7 files changed +35
-17
lines changed Original file line number Diff line number Diff line change 1+ root = true
2+
3+ [* ]
4+ end_of_line = lf
5+ insert_final_newline = true
Original file line number Diff line number Diff line change 44name : main
55
66on :
7- push :
8- branches :
9- - " **"
7+ pull_request :
8+ merge_group :
109
1110jobs :
11+ typos-check :
12+ name : Typos Check
13+ runs-on : ubuntu-latest
14+ steps :
15+ - uses : actions/checkout@v4
16+ - uses : crate-ci/typos@v1.19.0
17+
1218 formatting-check :
1319 name : Formatting Check
1420 runs-on : ubuntu-latest
1521 steps :
1622 - uses : actions/checkout@v4
17- - uses : jidicula/clang-format-action@v4.9.0
18- with : { clang-format-version: "16" }
23+ - uses : greut/eclint-action@v0
24+ - uses : jidicula/clang-format-action@v4.11.0
25+ with : { clang-format-version: "18" }
1926
2027 test-windows :
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]')
2129 runs-on : windows-latest
2230 steps :
23- - uses : actions/cache@v3
31+ - uses : actions/cache@v4
2432 with :
2533 path : |
2634 /Users/runneradmin/AppData/Local/bazelisk
3341 working-directory : test
3442
3543 test-linux :
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]')
3645 runs-on : ubuntu-latest
3746 steps :
38- - uses : actions/cache@v3
47+ - uses : actions/cache@v4
3948 with :
4049 path : |
4150 ~/.cache/bazelisk
Original file line number Diff line number Diff line change @@ -104,4 +104,4 @@ All notable changes to this project will be documented in this file. See [conven
104104
105105- - -
106106
107- Changelog generated by [ cocogitto] ( https://github.com/cocogitto/cocogitto ) .
107+ Changelog generated by [ cocogitto] ( https://github.com/cocogitto/cocogitto ) .
Original file line number Diff line number Diff line change 11startup --windows_enable_symlinks
22common --enable_bzlmod
33common --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
45common --registry=https://raw.githubusercontent.com/bazelboost/registry/main
56common --registry=https://bcr.bazel.build
67build --enable_platform_specific_config
@@ -10,9 +11,6 @@ build --enable_runfiles
1011build --noincompatible_remove_rule_name_parameter
1112query --noincompatible_remove_rule_name_parameter
1213
13- # Temporary until https://github.com/grailbio/bazel-toolchain/pull/198 is merged
14- build:linux --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux
15-
1614common:ci --announce_rc
1715common:ci --verbose_failures
1816common:ci --keep_going
Original file line number Diff line number Diff line change 11pre_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" ,
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" ,
45]
56
67post_bump_hooks = [
7- " git push" ,
8- " git push origin {{version}}" ,
9- " 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" ,
1011]
Original file line number Diff line number Diff line change 33 "extends" : [
44 " github>ecsact-dev/renovate-config"
55 ]
6- }
6+ }
Original file line number Diff line number Diff line change 1+ [files ]
2+ extend-exclude = [" CHANGELOG.md" ]
3+
4+ [default ]
5+ extend-ignore-re = [" (?Rm)^.*(#|//)\\ s*typos:disable-line$" ]
You can’t perform that action at this time.
0 commit comments