Skip to content

@/ui Callable Workflows #4

@/ui Callable Workflows

@/ui Callable Workflows #4

Workflow file for this run

name: CI/CD [Main]
on:
pull_request:
branches: # PRs to the following branches will trigger the workflow
- main
paths:
- ".github/workflows/**"
- "Dockerfile"
- "apps/**"
- "packages/**"
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: "${{ github.workflow }} @ ${{ github.ref }}"

Check failure on line 15 in .github/workflows/main.yaml

View workflow run for this annotation

GitHub Actions / CI/CD [Main]

Invalid workflow file

The workflow is not valid. In CodeForAfrica/ui/.github/workflows/_cd-dev.yaml@c300844f6968e443344f3c9a315c0b2084048c58 (Line: 15, Col: 11): Error from called workflow CodeForAfrica/ui/.github/workflows/_cd-codeforafrica.yaml@c300844f6968e443344f3c9a315c0b2084048c58 (Line: 32, Col: 19): Unrecognized named-value: 'secrets'. Located at position 1 within expression: secrets.CODEFORAFRICA_MONGODB_URL
cancel-in-progress: true
jobs:
ci:
name: CI
uses: ./.github/workflows/_ci.yaml
apps-path-filter:
needs:
- ci
name:
uses: ./.github/workflows/_app-path-filter.yaml
cd-dev:
needs:
- apps-path-filter
if: ${{ needs.apps-path-filter.outputs.apps == 'true' }}
uses: ./.github/workflows/_cd-dev.yaml
secrets: inherit
cd-prod:
needs:
- apps-path-filter
if: ${{ needs.apps-path-filter.outputs.apps == 'true' }}
uses: ./.github/workflows/_cd-prod.yaml
secrets: inherit