Tasks#

Task files contain a list of actions, or otherwise a list of other task files to include.

To get started using tasks, follow our Getting Started guide.

Required Parameters#


Paramater

Description

Type

title

Title for the task.

string

Optional Parameters#


All tasks have the following optional parameters.

Paramater

Description

Type

option

See Features In YAML.

string

options

Similar to option, however multiple options can be specified to trigger an action.

string array

builds

Specifies which Windows builds the task should apply to.

Builds can be specified using either a basic array of builds (ex. builds: ['22621', '22622']), or more dynamic versions can be specified like in the following example: builds: [ '>=22621' ]

Any of the following conditions can be used:
>= - less than or equal to
<= - greater than or equal to
> - greater than
< - less than

You can also use negative expressions like in the following example: builds: [ '>=22621', '!>22625' ].
You can also specify an update build release number: 22621.1265.

string array