Skip to content

add a manual workflow trigger where a one-off diff can be requested (… #2

add a manual workflow trigger where a one-off diff can be requested (…

add a manual workflow trigger where a one-off diff can be requested (… #2

Workflow file for this run

name: manual
on:
workflow_dispatch:
inputs:
diffbase:
description: the version or commit to diff against
required: false
type: string
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
# Use the latest container to render the samples with the given diff
render-samples:
needs: build-container
uses: ./.github/workflows/render.yml
with:
container-version: latest
input: guide.tcg
workflow: pr
render-samples:

Check failure on line 24 in .github/workflows/manual.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/manual.yml

Invalid workflow file

You have an error in your yaml syntax on line 24
needs: build-container
uses: ./.github/workflows/render.yml
with:
container-version: latest
input: guide.tcg
workflow: pr
manual_diffbase: ${{ inputs.diffbase }}