From ab64968bfd4fbeb2ac03cf6b16fb176b71f176a3 Mon Sep 17 00:00:00 2001 From: "Steven E. Harris" Date: Thu, 15 Aug 2024 16:34:08 -0500 Subject: [PATCH] Restore WORKSPACE.bazel file for Bazel 6 support In order to accommodate users with Bazel version 6, we must retain the WORKSPACE.bazel file, even though it's no longer required to be present in Bazel 7. Note that the Bazel Central Registry (BCR) CI workflow tests with both Bazel version 6 and 7 per the "bazel" matrix entries in the .bcr/presubmit.yml file. --- WORKSPACE.bazel | 1 + 1 file changed, 1 insertion(+) create mode 100644 WORKSPACE.bazel diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel new file mode 100644 index 0000000..2472645 --- /dev/null +++ b/WORKSPACE.bazel @@ -0,0 +1 @@ +workspace(name = "com_github_seh_rules_cue")