Skip to content

test

test #1

name: post-use-trigger-workflow
on:
workflow_call:
inputs:
build-environment:
required: true
type: string
description: Top-level label for what's being built/tested.
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}
cancel-in-progress: true
permissions: read-all
jobs:
test-process:
runs-on: ubuntu-latest
steps:
- name: Testing
run: |
echo "Workflow post-use-trigger-workflow: ${{ github.workflow }}"
test-dispatch:

Check failure on line 24 in .github/workflows/post-use-trigger-workflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/post-use-trigger-workflow.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
- name: Invoke workflow with inputs
uses: benc-uk/workflow-dispatch@v1
with:
workflow: post_test_dispatch.yml
inputs: '{ "name": "blah blah"}'