Skip to content
name: Trigger Build & Deploy for all booklet webapps
on:
workflow_dispatch:
inputs:
event_type:
description: 'Type of event to trigger'
required: true
default: 'build_booklet'
jobs:
trigger_actions:
runs-on: ubuntu-latest
strategy:
matrix:
repo: ['SchneiderGeo-Booklet-Guibo', 'SchneiderGeo-Booklet-Eurobike', 'SchneiderGeo-Booklet-Eurohike'] # List your repositories here
steps:
- name: Trigger repository event
uses: peter-evans/repository-dispatch@v2
with:i

Check failure on line 20 in .github/workflows/build_booklety.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_booklety.yaml

Invalid workflow file

You have an error in your yaml syntax on line 20
token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository_owner }}/${{ matrix.repo }}
event-type: ${{ github.event.inputs.event_type }}