Skip to content

Commit ddc9afb

Browse files
committed
fix description of job types
1 parent 2fec908 commit ddc9afb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/services/hover/workflow.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func jobReference(name string) string {
5050
"- `requires`: Jobs are run in parallel by default, so you must explicitly require any dependencies by their job name.\n" +
5151
"- `name`: can be used to invoke reusable jobs across any number of workflows. Using the `name` key ensures numbers are not appended to your job name (i.e. sayhello-1 , sayhello-2, etc.). The name you assign to the name key needs to be unique, otherwise the numbers will still be appended to the job name.\n" +
5252
"- `context`: Jobs may be configured to use global environment variables set for an organization, see the Contexts document for adding a context in the application settings.\n" +
53-
"- `type`: A job may have a type of `approval` indicating it must be manually approved before downstream jobs may proceed.\n" +
53+
"- `type`: Job type, can be build, release, no-op, or approval. If not specified, defaults to build.\n" +
5454
"- `filters`: Job Filters can have the key branches or tags.+\n" +
5555
"- `matrix` : requires config `2.1`. The `matrix` stanza allows you to run a parameterized job multiple times with different arguments.\n" +
5656
"- `pre-steps` and `post-steps`: requires config `2.1`. Steps under `pre-steps` are executed before any of the other steps in the job. The steps under `post-steps` are executed after all of the other steps.\n"

0 commit comments

Comments
 (0)