Skip to content

adding tests

adding tests #1

Workflow file for this run

name: Notify
on: [push, workflow_dispatch]
jobs:
notify:

Check failure on line 7 in .github/workflows/notify.yml

View workflow run for this annotation

GitHub Actions / Notify

Invalid workflow file

The workflow is not valid. .github/workflows/notify.yml (Line: 7, Col: 3): The workflow must contain at least one job with no dependencies.
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
downstream:
- 'zcaudate-xyz/foundation-embed'
- 'zcaudate-xyz/foundation-fx'
- 'zcaudate-xyz/foundation-web'
steps:
- name: Notify Downstream
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.GH_TOKEN }}
repository: ${{ matrix.downstream }}
event-type: code-base-changed
client-payload: '{"repo": "${{ github.repository.id }}", "ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "comment": "${{ github.payload.comment }}"}'