Skip to content

apply isort

apply isort #5

Workflow file for this run

---
name: all_green
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
pull_request:
types:

Check failure on line 10 in .github/workflows/all_green_check.yml

View workflow run for this annotation

GitHub Actions / all_green

Invalid workflow file

The workflow is not valid. In tremble/amazon.aws/.github/workflows/changelog_and_linters.yml@ac5233bc8e90d5107fa1e5eb706275d668bdfe6b (Line: 10, Col: 11): Error from called workflow tremble/ansible_github_actions/.github/workflows/tox.yml@tox/labels (Line: 24, Col: 5): Unexpected value 'run-name'
- opened
- reopened
- labeled
- unlabeled
- synchronize
branches:
- main
- 'stable-*'
tags:
- '*'
jobs:
changelog-and-linters:
uses: ./.github/workflows/changelog_and_linters.yml # use the callable changelog-and-linters job to run tests
sanity:
uses: ./.github/workflows/sanity.yml # use the callable sanity job to run tests
units:
uses: ./.github/workflows/units.yml # use the callable units job to run tests
all_green:
if: ${{ always() }}
needs:
- changelog-and-linters
- sanity
- units
runs-on: ubuntu-latest
steps:
- run: >-
python -c "assert set([
'${{ needs.changelog-and-linters.result }}',
'${{ needs.sanity.result }}',
'${{ needs.units.result }}'
]) == {'success'}"