Skip to content

WIP use worflow_call to dynamically lint, format, test, and build based on what files are changed #9

WIP use worflow_call to dynamically lint, format, test, and build based on what files are changed

WIP use worflow_call to dynamically lint, format, test, and build based on what files are changed #9

Workflow file for this run

name: Pull Request CI
on:
pull_request:
branches:
- "**"
merge_group:
types:
- checks_requested
jobs:
determine-changes:
uses: ./.github/workflows/determineChanges.yaml

Check failure on line 13 in .github/workflows/pullRequestCI.yaml

View workflow run for this annotation

GitHub Actions / Pull Request CI

Invalid workflow file

The workflow is not valid. In .github/workflows/pullRequestCI.yaml (Line: 13, Col: 11): Error from called workflow CDCgov/phdi/.github/workflows/determineChanges.yaml@04dee764f4373ec6792312a09b15b871e2a1d227 (Line: 8, Col: 16): Unrecognized named-value: 'steps'. Located at position 1 within expression: steps.changed-files.outputs.result In .github/workflows/pullRequestCI.yaml (Line: 13, Col: 11): Error from called workflow CDCgov/phdi/.github/workflows/determineChanges.yaml@04dee764f4373ec6792312a09b15b871e2a1d227 (Line: 10, Col: 9): Unexpected value 'GITHUB_TOKEN'
secrets:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
lint-changed-files:
needs: determine-changes
runs-on: ubuntu-latest
steps:
- name: Call Lint Workflow
uses: ./.github/workflows/lint.yaml
with:
changed-files-data: ${{ needs.determine-changes.outputs.changed-files-data }}