fix: avoid warning
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 16s
Lint Markdown files / markdown-lint (push) Successful in 4s
Release Ansible Role / Release Ansible Role (push) Successful in 2m52s

This commit is contained in:
2026-01-08 18:29:57 +01:00
parent 82250f851d
commit 4818baeb5a
8 changed files with 9 additions and 764 deletions

View File

@@ -3,9 +3,9 @@
- name: Verify required variables are defined
ansible.builtin.assert:
that:
- vars[item] is defined
- vars[item] | length > 0
- lookup('vars', item) is defined
- lookup('vars', item) | length > 0
fail_msg: "Required variable '{{ item }}' is not defined or empty."
with_items:
loop:
- act_runner_gitea_url
- act_runner_token