Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/marcbruins/hellodockeractionsample

Docker action sample
https://github.com/marcbruins/hellodockeractionsample

Last synced: 10 days ago
JSON representation

Docker action sample

Awesome Lists containing this project

README

        

# Hello world docker action

This action prints "Hello World" to the log or "Hello" + the name of a person to greet. To learn how this action was built, see "[Creating a Docker container action](https://docs.github.com/en/actions/creating-actions/creating-a-docker-container-action)" in the GitHub Docs.

## Inputs

### `who-to-greet`

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

## Outputs

### `time`

The time we greeted you.

## Example usage

```yaml
uses: MarcBruins/HelloDockerActionSample@main
with:
who-to-greet: 'Mona the Octocat'
```