We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c9e193 commit 902a8bdCopy full SHA for 902a8bd
2 files changed
actions/BUILD.bazel
@@ -0,0 +1,21 @@
1
+load("@rules_pkg//pkg:mappings.bzl", "pkg_filegroup", "pkg_files")
2
+load("//misc/bazel:pkg.bzl", "codeql_pack", "codeql_pkg_files")
3
+
4
+package(default_visibility = ["//visibility:public"])
5
6
+[
7
+ codeql_pack(
8
+ name = "-".join(parts),
9
+ srcs = [
10
+ "//actions/extractor",
11
+ ],
12
+ pack_prefix = "/".join(parts),
13
+ )
14
+ for parts in (
15
+ [
16
+ "experimental",
17
+ "actions",
18
19
+ ["actions"],
20
21
+]
actions/extractor/BUILD.bazel
@@ -0,0 +1,10 @@
+load("//misc/bazel:pkg.bzl", "codeql_pkg_files", "strip_prefix")
+codeql_pkg_files(
+ name = "extractor",
+ "codeql-extractor.yml",
+ ] + glob(["tools/**"]),
+ strip_prefix = strip_prefix.from_pkg(),
+ visibility = ["//actions:__pkg__"],
+)
0 commit comments