github-actions-models 1.24.1

Unofficial, high-quality data models for GitHub Actions workflows, actions, and related components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# ensures that we parse actions without input/output descriptions correctly
# see: https://github.com/woodruffw/zizmor/issues/501

inputs:
  foo:
    default: "lol"
outputs:
  bar:
    value: "hmm"

runs:
  using: "composite"
  steps:
    - name: say hello
      run: echo hello
      shell: bash