diff --git a/.github/workflows/galaxy-release.yml b/.github/workflows/galaxy-release.yml index f1f6c08d7..d33c11204 100644 --- a/.github/workflows/galaxy-release.yml +++ b/.github/workflows/galaxy-release.yml @@ -33,8 +33,25 @@ jobs: -e collection_repo=https://github.com/${{ github.repository }} --skip-tags=install,cleanup - - name: Push changes - uses: ad-m/github-push-action@master + - name: Create Pull Request + id: prcreate + uses: peter-evans/create-pull-request@v3 with: - branch: devel - github_token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: Update changelog ${{ github.ref }} + committer: GitHub + author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> + signoff: false + branch: changelog-patches + delete-branch: true + title: '[RELEASE] Update changelog ${{ github.ref }}' + body: | + Update changelog + - Updated with changelog for release ${{ github.ref }} + - Auto-generated by [create-pull-request][1] + + [1]: https://github.com/peter-evans/create-pull-request + labels: | + changelog + automated pr + draft: false diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d35f15075..e474cdcb2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,10 +1,24 @@ -============================================================= +============================================ redhat_cop.tower_configuration Release Notes -============================================================= +============================================ .. contents:: Topics +v0.2.0 +====== + +Minor Changes +------------- + +- Added pre-commit hook for local development and automated testing purposes +- Standardised and corrected all READMEs + +Bugfixes +-------- + +- Removed defaulted objects for all roles so that they were not always run if using a conditional against the variable. (see https://github.com/redhat-cop/tower_configuration/issues/68) + v0.1.0 ====== diff --git a/Galaxy.yml b/Galaxy.yml new file mode 100644 index 000000000..8b65ab962 --- /dev/null +++ b/Galaxy.yml @@ -0,0 +1,28 @@ +--- +namespace: redhat_cop +name: tower_configuration +version: 0.2.0 +description: A collection of roles to manage Ansible Tower +readme: README.md +authors: + - Andrew Huffman + - Jonathan Lozada De La Matta @jlozadad + - Kedar Kulkarni @kedark3 + - Tom Page @Tompage1994 + - Sean Sullivan @sean-m-sullivan +repository: https://github.com/redhat-cop/tower_configuration +issues: https://github.com/redhat-cop/tower_configuration/issues +build_ignore: + - galaxy.yml.j2 + - release.yml + - .github + - .ansiblelint.yml + - .yamllint.yml +license: + - GPL-3.0-or-later +tags: + - tower + - collection + - tower_configuration +dependencies: + awx.awx: "*" diff --git a/changelogs/.plugin-cache.yaml b/changelogs/.plugin-cache.yaml index 627176a51..19ad6ad12 100644 --- a/changelogs/.plugin-cache.yaml +++ b/changelogs/.plugin-cache.yaml @@ -12,4 +12,4 @@ plugins: shell: {} strategy: {} vars: {} -version: 0.1.0 +version: 0.2.0 diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index c9466bea4..e11ce7d9f 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -24,3 +24,16 @@ releases: - new_roles.yaml - workflows.yaml release_date: '2020-08-04' + 0.2.0: + changes: + bugfixes: + - Removed defaulted objects for all roles so that they were not always run if + using a conditional against the variable. (see https://github.com/redhat-cop/tower_configuration/issues/68) + minor_changes: + - Added pre-commit hook for local development and automated testing purposes + - Standardised and corrected all READMEs + fragments: + - 72-defaults.yaml + - 73-readmes.yaml + - 77-pre-commit.yaml + release_date: '2020-09-09' diff --git a/changelogs/fragments/72-defaults.yaml b/changelogs/fragments/72-defaults.yaml deleted file mode 100644 index fae01f302..000000000 --- a/changelogs/fragments/72-defaults.yaml +++ /dev/null @@ -1,2 +0,0 @@ -bugfixes: - - Removed defaulted objects for all roles so that they were not always run if using a conditional against the variable. (see https://github.com/redhat-cop/tower_configuration/issues/68) diff --git a/changelogs/fragments/73-readmes.yaml b/changelogs/fragments/73-readmes.yaml deleted file mode 100644 index 7eda499f3..000000000 --- a/changelogs/fragments/73-readmes.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - Standardised and corrected all READMEs diff --git a/changelogs/fragments/77-pre-commit.yaml b/changelogs/fragments/77-pre-commit.yaml deleted file mode 100644 index 1cac90fef..000000000 --- a/changelogs/fragments/77-pre-commit.yaml +++ /dev/null @@ -1,2 +0,0 @@ -minor_changes: - - Added pre-commit hook for local development and automated testing purposes