Skip to content

repro-ci.yml: Modified into a reusable workflow, added stub steps #1

repro-ci.yml: Modified into a reusable workflow, added stub steps

repro-ci.yml: Modified into a reusable workflow, added stub steps #1

name: Scheduled Checks - Branch Specific
on:
workflow_call:
inputs:
config-branch:
type: string
required: true
description: A config branch to use for the reproducibility run
jobs:
repro-ci:
uses: ./.github/workflows/repro-ci.yml@main

Check failure on line 11 in .github/workflows/schedule-2-start.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/schedule-2-start.yml

Invalid workflow file

invalid value workflow reference: cannot specify version when calling local workflows
with:
model-name: access-om2
config-branch: ${{ inputs.config-branch }}
successful-repro:
name: Successful Reproduction
needs:
- repro-ci
if: needs.repro.outputs.result == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
failed-repro:
name: Failed Reproduction
needs:
- repro-ci
if: needs.repro.outputs.result == 'false'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4