name: "Plan"
description: "Plan the execution and output a build matrix"
inputs:
plan-name:
description: "What plan to use"
required: true
outputs:
matrix:
description: "The build matrix generated from planning"
value: ${{ steps.plan.outputs.matrix }}
runs:
using: "composite"
steps:
- uses: MOZGIII/action-plan@v0.8.0
id: plan
with:
plan-file: ${{ github.action_path }}/plan.ts
plan: ${{ inputs.plan-name }}