From 03e223dbdc653c1494b2a973ea41a7f912e9e2c0 Mon Sep 17 00:00:00 2001 From: "tompage1994@hotmail.co.uk" Date: Wed, 2 Aug 2023 15:03:06 +0100 Subject: [PATCH] Make galaxy.yml persistent and move out ansible.cfg --- ansible.cfg => .github/files/ansible.cfg | 0 galaxy.yml.j2 => .github/files/galaxy.yml.j2 | 2 ++ .github/workflows/ci_testing.yaml | 3 +++ changelogs/fragments/source_build.yml | 4 ++++ 4 files changed, 9 insertions(+) rename ansible.cfg => .github/files/ansible.cfg (100%) rename galaxy.yml.j2 => .github/files/galaxy.yml.j2 (92%) create mode 100644 changelogs/fragments/source_build.yml diff --git a/ansible.cfg b/.github/files/ansible.cfg similarity index 100% rename from ansible.cfg rename to .github/files/ansible.cfg diff --git a/galaxy.yml.j2 b/.github/files/galaxy.yml.j2 similarity index 92% rename from galaxy.yml.j2 rename to .github/files/galaxy.yml.j2 index ff381bf..ffeeabc 100644 --- a/galaxy.yml.j2 +++ b/.github/files/galaxy.yml.j2 @@ -7,6 +7,8 @@ readme: README.md authors: - Sean Sullivan @sean-m-sullivan - Anshul Behl @anshulbehl + - Tom Page @Tompage1994 + - David Danielsson @djdanielsson repository: {{ collection_repo }} issues: {{ collection_repo }}/issues build_ignore: diff --git a/.github/workflows/ci_testing.yaml b/.github/workflows/ci_testing.yaml index f3cd889..e0c731b 100644 --- a/.github/workflows/ci_testing.yaml +++ b/.github/workflows/ci_testing.yaml @@ -20,6 +20,9 @@ jobs: - name: Install Ansible and Ansible Builder run: pip install --upgrade ansible-core ansible-builder + - name: Move ansible.cfg to root + run: mv .github/files/ansible.cfg . + - name: Install Dependencies run: ansible-galaxy collection install containers.podman -f diff --git a/changelogs/fragments/source_build.yml b/changelogs/fragments/source_build.yml new file mode 100644 index 0000000..1a65407 --- /dev/null +++ b/changelogs/fragments/source_build.yml @@ -0,0 +1,4 @@ +--- +minor_changes: + - ansible.cfg removed from root and galaxy.yml added to enable install from source +...