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
From the docs I expect to be able to use requires and wildcard arguments together to limit the possible wildcards. Below is an example, following from the initial wildcard PR #1489:
From the docs I expect to be able to use requires and wildcard arguments together to limit the possible wildcards. Below is an example, following from the initial wildcard PR #1489:
And the output:
❯ task start-a task: Task "start-*" cancelled because it is missing required variables: SERVICE
❯ task start-web task: Task "start-*" cancelled because it is missing required variables: SERVICE
Removing the
requires
block results in the following (correct) output:I would expect
requires
to validate thatSERVICE
is in["web", "db"]
. If this assumption or my implementation is incorrect, please forgive me.Task version: 3.40.1 ()
The text was updated successfully, but these errors were encountered: