aboutsummaryrefslogtreecommitdiff
path: root/.github/devcontainers-action/action.yml
blob: d949efc2462e0b6325449a5f294fd4a4be0577f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: 'Dev Container'
description: 'Publish custom development container assets'
author: 'GitHub'
branding:
  icon: box
  color: blue
inputs:
  # Global options
  publish-features:
    required: false
    default: "false"
    description: "['true'/'false'] Publish dev container 'feature' artifacts"
  generate-docs:
    required: false
    default: "false"
    description: "Parse machine-readable (.json) configuration files and commit standardized documentation"

  # 'features' options
  base-path-to-features:
    required: false
    default: ''
    description: "Relative path to the 'src' folder containing dev container 'feature(s)'"
  oci-registry:
    required: false
    description: "Name of the OCI registry that implements the OCI Artifact Distribution Specification"
  features-namespace:
    required: false
    description: "A unique indentifier for the collection of features"

runs:
  using: 'node16'
  main: 'dist/index.js'