From 0dc8df15e239be11759c3836c93f5b9c4b01eca3 Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Thu, 17 Oct 2024 16:12:32 -0700 Subject: [PATCH] Fix property name in qlpack (#52758) --- .../publishing-and-using-codeql-packs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/publishing-and-using-codeql-packs.md b/content/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/publishing-and-using-codeql-packs.md index 0e309432fa..3d34aeab0d 100644 --- a/content/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/publishing-and-using-codeql-packs.md +++ b/content/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/publishing-and-using-codeql-packs.md @@ -26,16 +26,16 @@ library: # set to true if the pack is a library. Set to false or omit for a quer name: / version: description: -default-suite: # optional, one or more queries in the pack to run by default +defaultSuite: # optional, one or more queries in the pack to run by default - query: /query-file>.ql -default-suite-file: default-queries.qls # optional, a pointer to a query-suite in this pack +defaultSuiteFile: default-queries.qls # optional, a pointer to a query-suite in this pack license: # optional, the license under which the pack is published dependencies: # map from CodeQL pack name to version range ``` * `name:` must follow the `/` format, where `` is the {% data variables.product.prodname_dotcom %} organization that you will publish to and `` is the name for the pack. -* A maximum of one of `default-suite` or `default-suite-file` is allowed. These are two different ways to define a default query suite to be run, the first by specifying queries directly in the qlpack.yml file and the second by specifying a query suite in the pack. +* A maximum of one of `defaultSuite` or `defaultSuiteFile` is allowed. These are two different ways to define a default query suite to be run, the first by specifying queries directly in the qlpack.yml file and the second by specifying a query suite in the pack. ## Running `codeql pack publish`