const-sub-array 0.1.0

Extract a fixed size sub-array out of an array with complie-time length and offset checks.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 }}