Skip to content

Commit ed8a0fc

Browse files
authored
Fix playbook galaxy (#444)
* DNM * Add galaxy.yml to playbook project * Update README.md
1 parent b38e615 commit ed8a0fc

File tree

6 files changed

+36
-0
lines changed

6 files changed

+36
-0
lines changed

src/ansible_creator/resources/playbook_project/collections/ansible_collections/project_org/project_repo/CHANGELOG.md

Whitespace-only changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
# Minimal galaxy.yml for a playbook project for tools to recognize this as a collection
3+
4+
namespace: "{{ namespace }}"
5+
name: "{{ collection_name }}"
6+
readme: README.md
7+
version: 0.0.1
8+
authors:
9+
- your name <example@domain.com>
10+
11+
description: Collection for {{ namespace }}.{{ collection_name }} playbook project
12+
13+
# TO-DO: update the tags based on your content type
14+
tags: ["tools"]
15+
16+
repository: NA
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
requires_ansible: ">=2.17.0"

tests/fixtures/project/playbook_project/collections/ansible_collections/weather/demo/CHANGELOG.md

Whitespace-only changes.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
# Minimal galaxy.yml for a playbook project for tools to recognize this as a collection
3+
4+
namespace: "weather"
5+
name: "demo"
6+
readme: README.md
7+
version: 0.0.1
8+
authors:
9+
- your name <[email protected]>
10+
11+
description: Collection for weather.demo playbook project
12+
13+
# TO-DO: update the tags based on your content type
14+
tags: ["tools"]
15+
16+
repository: NA
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
requires_ansible: ">=2.17.0"

0 commit comments

Comments
 (0)