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
Add block structure to allow create tasks in yaml with common fields (when, ignore_errors, loop, changed_when, until).
This create tasks included in group with that fields:
Example:
- name: Skip all if not envar NOT_SKIPwhen: env.NOT_SKIP is defined group:
- name: Say hellocommand: echo hi
- command: echo bye
Expands to:
- name: Say hellocommand: echo hiwhen: env.NOT_SKIP is defined
- command: echo byewhen: env.NOT_SKIP is defined
The text was updated successfully, but these errors were encountered:
Add block structure to allow create tasks in yaml with common fields (when, ignore_errors, loop, changed_when, until).
This create tasks included in group with that fields:
Example:
Expands to:
The text was updated successfully, but these errors were encountered: