Skip to content

GitHub Actions Playground #63

GitHub Actions Playground

GitHub Actions Playground #63

Workflow file for this run

name: "GitHub Actions Playground"
on:
workflow_dispatch:
jobs:
get-version-1:
name: "Get Version 1"
uses: "./.github/workflows/get-version.yml"

Check failure on line 7 in .github/workflows/package-listing.yml

View workflow run for this annotation

GitHub Actions / GitHub Actions Playground

Invalid workflow file

The workflow is not valid. In .github/workflows/package-listing.yml (Line: 7, Col: 11): Error from called workflow CoreMedia/ckeditor-plugins/.github/workflows/get-version.yml@2d5a609745974250ead838057832423b1cb6a910 (Line: 80, Col: 13): Unexpected symbol: '"major"'. Located at position 24 within expression: inputs.release_type == "major" || inputs.release_type == "minor" || inputs.release_type == "patch" In .github/workflows/package-listing.yml (Line: 7, Col: 11): Error from called workflow CoreMedia/ckeditor-plugins/.github/workflows/get-version.yml@2d5a609745974250ead838057832423b1cb6a910 (Line: 86, Col: 13): Unexpected symbol: '"release-candidate"'. Located at position 24 within expression: inputs.release_type == "release-candidate"
secrets: inherit
with:
release_type: major
verbose: true
get-version-2:
name: "Get Version 2"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: minor
verbose: true
get-version-3:
name: "Get Version 3"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: patch
verbose: true
get-version-4:
name: "Get Version 4"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: release-candidate
verbose: true
get-version-5:
name: "Get Version 5"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: pull-request
verbose: true
get-version-6:
name: "Get Version 6"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: current
verbose: true
get-version-7:
name: "Get Version 7"
uses: "./.github/workflows/get-version.yml"
secrets: inherit
with:
release_type: unknown
verbose: true