From c9b684e5cb68e9835c2618fedcda248a4d4ac32a Mon Sep 17 00:00:00 2001 From: Moritz Sanft Date: Mon, 5 Jun 2023 10:39:55 +0200 Subject: [PATCH] add bazel rule --- bazel/ci/BUILD.bazel | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bazel/ci/BUILD.bazel b/bazel/ci/BUILD.bazel index 252e22376..5eeeda46c 100644 --- a/bazel/ci/BUILD.bazel +++ b/bazel/ci/BUILD.bazel @@ -489,3 +489,11 @@ multirun( jobs = 0, # execute concurrently visibility = ["//visibility:public"], ) + +repo_command( + name = "update_pseudo_version_hashes", + args = [ + "update", + ], + command = "//hack/pseudo-version:pseudo_version_tool_freshness", +)