Skip to content

Commit

Permalink
don't update version from galaxy file
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble committed Feb 28, 2023
1 parent f7eee5a commit 664c8c2
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,31 @@ on: # yamllint disable-line rule:truthy
workflow_dispatch:

jobs:
ansible-lint:
uses: tremble/ansible_github_actions/.github/workflows/ansible-lint.yml@devel/experimental
# ansible-lint:
# uses: tremble/ansible_github_actions/.github/workflows/ansible-lint.yml@devel/experimental
changelog:
uses: tremble/ansible_github_actions/.github/workflows/changelog.yml@devel/experimental
sanity:
uses: tremble/ansible_github_actions/.github/workflows/sanity.yml@devel/experimental
unit-galaxy:
uses: tremble/ansible_github_actions/.github/workflows/unit_galaxy.yml@devel/experimental
unit-source:
uses: tremble/ansible_github_actions/.github/workflows/unit_source.yml@devel/experimental
with:
collection_pre_install: ''
all_green:
if: ${{ always() }}
needs:
- changelog
- sanity
- unit-galaxy
- unit-source
runs-on: ubuntu-latest
steps:
- run: >-
python -c "assert set([
'${{ needs.changelog.result }}',
'${{ needs.sanity.result }}',
'${{ needs.unit-galaxy.result }}',
'${{ needs.unit-source.result }}'
]) == {'success'}"
update_galaxy_version: false
# unit-source:
# uses: tremble/ansible_github_actions/.github/workflows/unit_source.yml@devel/experimental
# with:
# collection_pre_install: ''
# all_green:
# if: ${{ always() }}
# needs:
# - changelog
# - sanity
# - unit-galaxy
# - unit-source
# runs-on: ubuntu-latest
# steps:
# - run: >-
# python -c "assert set([
# '${{ needs.changelog.result }}',
# '${{ needs.sanity.result }}',
# '${{ needs.unit-galaxy.result }}',
# '${{ needs.unit-source.result }}'
# ]) == {'success'}"

0 comments on commit 664c8c2

Please sign in to comment.