Skip to content

Create sh-called.yaml #14

Create sh-called.yaml

Create sh-called.yaml #14

Workflow file for this run

name: Caller
on:
push:
jobs:
test-yaml:
name: Test YAML
runs-on: ubuntu-latest
outputs:
yaml-changes: ${{ steps.yaml-changes.outputs.yaml-files }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Check for YAML
uses: dorny/paths-filter@v3
id: yaml-changes
with:
filters: |
yaml-files:
- "**.yml"
- "**.yaml"
call-yaml:
name: Call YAML Workflow
needs:
- test-yaml
if: needs.test-yaml.outputs.yaml-changes == 'true'
uses: james-garriss/test-paths-filter/.github/workflows/called.yaml@main

Check failure on line 26 in .github/workflows/caller.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/caller.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/caller.yaml" -> "james-garriss/test-paths-filter/.github/workflows/called.yaml@main" : failed to fetch workflow: workflow was not found.