An open API service indexing awesome lists of open source software.

https://github.com/arturwincenciak/hello-world-docker-action

This guide shows you the minimal steps required to build a Docker container action
https://github.com/arturwincenciak/hello-world-docker-action

docker-actions github-actions hello-world

Last synced: 7 months ago
JSON representation

This guide shows you the minimal steps required to build a Docker container action

Awesome Lists containing this project

README

          

# Hello world docker action

This action prints "Hello World" or "Hello" + the name of a person to greet to the log.

## Inputs

## `who-to-greet`

**Required**.
The name of the person to greet.
Default: `"World"`.

## `some_second_arg`

Not required.
Second argument.
Default: `"Default value of second argument"`.

## Outputs

## `time`

The time we greeted you.

## Example usage

uses: actions/hello-world-docker-action@v2
with:
who-to-greet: 'Mona the Octocat'