diff options
author | Josh Spicer <joshspicer@github.com> | 2022-06-03 17:49:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-03 17:49:26 +0300 |
commit | 3b55d6e958b0554289e272511e57e14880d5f526 (patch) | |
tree | fc7efa782189137ff599464624271d2d77321484 /.github/devcontainers-action/action.yml | |
parent | c12a205ab8e195541acfe0cb654b4888e16ea05c (diff) |
add v2 action
Diffstat (limited to '.github/devcontainers-action/action.yml')
-rw-r--r-- | .github/devcontainers-action/action.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/devcontainers-action/action.yml b/.github/devcontainers-action/action.yml new file mode 100644 index 0000000..52b842f --- /dev/null +++ b/.github/devcontainers-action/action.yml @@ -0,0 +1,32 @@ +name: 'Dev Container' +description: 'Publish custom development container feature(s) and/or templates(s)' +author: 'GitHub' +branding: + icon: box + color: blue +inputs: + # Global options + publish-features: + required: false + default: "false" + description: "['true'/'false'] Publish dev container 'feature' artifacts" + publish-templates: + required: false + default: "false" + description: "['true'/'false'] Publish dev container 'template' artifacts" + + # 'features' options + base-path-to-features: + required: false + default: './features/src' + description: "Relative path to the 'src' folder containing dev container 'feature(s)'" + + # 'template' options + base-path-to-templates: + required: false + default: './templates/src' + description: "Relative path to the folder containing dev container 'template(s)'" + +runs: + using: 'node12' + main: 'dist/index.js' |