Skip to content

Workflow experimentation #134

Workflow experimentation

Workflow experimentation #134

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:
- opened
- reopened
- synchronize
branches:
- main
- 'stable-*'
tags:
- '*'
jobs:
linters:
uses: ./.github/workflows/linters.yml # use the callable 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
integrations:
uses: ./.github/workflows/integration.yml
secrets:
SN_HOST: ${{ secrets.SN_HOST }}

Check failure on line 30 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. .github/workflows/all_green_check.yml (Line: 30, Col: 16): Invalid secret, SN_HOST is not defined in the referenced workflow. .github/workflows/all_green_check.yml (Line: 31, Col: 20): Invalid secret, SN_USERNAME is not defined in the referenced workflow.
SN_USERNAME: ${{ secrets.SN_USERNAME }}
SN_PASSWORD: ${{ secrets.SN_PASSWORD }}
all_green:
if: ${{ always() }}
needs:
- linters
- sanity
- units
- integrations
runs-on: ubuntu-latest
steps:
- run: >-
python -c "assert set([
'${{ needs.linters.result }}',
'${{ needs.sanity.result }}',
'${{ needs.units.result }}'
]) == {'success'}"