Skip to content

Sync with upstream #541

Sync with upstream

Sync with upstream #541

Workflow file for this run

name: "Workflow Dispatch"
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
call-lint:
name: "Lint"
uses: ./.github/workflows/lint.yml

Check failure on line 12 in .github/workflows/dispatch.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dispatch.yml

Invalid workflow file

error parsing called workflow ".github/workflows/dispatch.yml" -> "./.github/workflows/lint.yml" (source branch with sha:c87c28ab0fb5a2f9689bb39f32b117d387d809c8) : You have an error in your yaml syntax on line 30
call-build:
name: "Build & Test"
needs: call-lint
uses: ./.github/workflows/build.yml
secrets: inherit
call-release:
name: "Release"
needs: call-build
if: ${{ github.ref_protected == true }}
uses: ./.github/workflows/release.yml
secrets: inherit