You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: languageserver/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,6 +127,7 @@ initializationOptions: {
127
127
|---------|-------------|
128
128
|`missingInputsQuickfix`| Code action to add missing required inputs for actions |
129
129
|`blockScalarChompingWarning`| Warn when block scalars (`\|` or `>`) use implicit clip chomping, which adds a trailing newline that may be unintentional |
130
+
|`allowConcurrencyQueue`| Enable the `concurrency.queue` workflow property |
130
131
131
132
Individual feature flags take precedence over `all`. For example, `{ all: true, missingInputsQuickfix: false }` enables all experimental features except `missingInputsQuickfix`.
Copy file name to clipboardExpand all lines: workflow-parser/src/workflow-v1.0.json
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2050,10 +2050,20 @@
2050
2050
"cancel-in-progress": {
2051
2051
"type": "boolean",
2052
2052
"description": "To cancel any currently running job or workflow in the same concurrency group, specify cancel-in-progress: true."
2053
+
},
2054
+
"queue": {
2055
+
"type": "concurrency-queue",
2056
+
"description": "The queuing mode for the concurrency group. When set to `max`, workflows or jobs will wait in a queue for the concurrency group up to the maximum queue length. Default: `single` meaning at most one item can be pending."
2053
2057
}
2054
2058
}
2055
2059
}
2056
2060
},
2061
+
"concurrency-queue": {
2062
+
"allowed-values": [
2063
+
"single",
2064
+
"max"
2065
+
]
2066
+
},
2057
2067
"job-environment": {
2058
2068
"description": "The environment that the job references. All environment protection rules must pass before a job referencing the environment is sent to a runner.",
0 commit comments