This commit is contained in:
Andrew Eisenberg 2024-10-17 16:12:32 -07:00 коммит произвёл GitHub
Родитель 2cf6d9a60e
Коммит 0dc8df15e2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -26,16 +26,16 @@ library: # set to true if the pack is a library. Set to false or omit for a quer
name: <scope>/<pack> name: <scope>/<pack>
version: <x.x.x> version: <x.x.x>
description: <Description to publish with the package> description: <Description to publish with the package>
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: <relative-path>/query-file>.ql - query: <relative-path>/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 license: # optional, the license under which the pack is published
dependencies: # map from CodeQL pack name to version range dependencies: # map from CodeQL pack name to version range
``` ```
* `name:` must follow the `<scope>/<pack>` format, where `<scope>` is the {% data variables.product.prodname_dotcom %} organization that you will publish to and `<pack>` is the name for the pack. * `name:` must follow the `<scope>/<pack>` format, where `<scope>` is the {% data variables.product.prodname_dotcom %} organization that you will publish to and `<pack>` 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` ## Running `codeql pack publish`