From 8df62d16d98e974fcd9d84fcb9cd7c3a804b2824 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Thu, 3 Aug 2023 15:24:23 +0100 Subject: [PATCH] Removed ignore for galaxy.yml preventing it from persisting (#122) --- .gitignore | 2 -- galaxy.yml | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 galaxy.yml diff --git a/.gitignore b/.gitignore index 60455cf..17bae38 100644 --- a/.gitignore +++ b/.gitignore @@ -19,5 +19,3 @@ collections/* # Ignore test directory test - -galaxy.yml diff --git a/galaxy.yml b/galaxy.yml new file mode 100644 index 0000000..6eb61e4 --- /dev/null +++ b/galaxy.yml @@ -0,0 +1,37 @@ +--- +namespace: infra +name: ee_utilities +version: 3.1.0-devel +description: A collection of utility roles for usage with Ansible Execution Enviroments +readme: README.md +authors: + - Sean Sullivan @sean-m-sullivan + - Anshul Behl @anshulbehl + - Tom Page @Tompage1994 + - David Danielsson @djdanielsson +repository: https://github.com/redhat-cop/ee_utilities +issues: https://github.com/redhat-cop/ee_utilities/issues +build_ignore: + - galaxy.yml.j2 + - release.yml + - .github + - .markdownlint.yml + - .ansible-lint + - .yamllint.yml + - .pre-commit-config.yaml + - .gitignore + - .gitattributes +license: + - GPL-3.0-or-later +tags: + - execution + - enviroments + - collection + - utilities + - utils + - infrastructure + - ee_utilities + - ee_utils +dependencies: + "containers.podman": ">=1.0.0" +...