ansible-gitea-management/adhoc-create-org.yml

13 lines
275 B
YAML

---
# This playbook is meant to be used with callable variables, like adhoc or AWX.
# What: Creates an organization/group in Gitea
# What is expected:
- name: Create Gitea Organization or Group
hosts: all
become: false
vars_files:
- "vars/common.yml"
tasks:
...