Skip to content

🔧 add CI workflow checker #388

🔧 add CI workflow checker

🔧 add CI workflow checker #388

Workflow file for this run

name: Pull Request
on:
pull_request:
permissions:
contents: read
pull-requests: read
jobs:
workflow-lint:
uses: ./.github/workflows/_workflow_lint.yml
static_analysis:
uses: ./.github/workflows/_static-analysis.yml
needs: workflow-lint
build:
uses: ./.github/workflows/_build.yml
needs: static_analysis
secrets: inherit
codeql:
uses: ./.github/workflows/_codeql.yml

Check failure on line 21 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull-request.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pull-request.yml" -> "./.github/workflows/_codeql.yml" : (Line: 26, Col: 14): Unexpected value ''
needs: static_analysis
permissions:
contents: read
actions: read
security-events: write
test_integrations:
uses: ./.github/workflows/_test-integrations.yml
needs: build
secrets: inherit
test_code_samples:
uses: ./.github/workflows/_test-code-samples.yml
needs: build
secrets: inherit
test_cli:
uses: ./.github/workflows/_test-cli.yml
needs: build
secrets: inherit