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

16 lines
401 B
YAML

---
# This playbook is meant to be used with callable variables, like adhoc or AWX.
# What: Creates an organization/group in Gitea, relying on the gitea collection
# What is expected:
- name: Create Gitea Organization or Group
hosts: all
become: false
vars_files:
- "vars/common.yml"
# Create org
# Optionally assign user as part of owner team
# Remove automated account
tasks:
...