Files

24 lines
568 B
Markdown
Raw Permalink Normal View History

2019-08-06 18:52:31 -07:00
# Hello world docker action
2022-10-14 14:13:12 +10:00
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.
2019-08-06 18:52:31 -07:00
## Inputs
### `who-to-greet`
**Required** The name of the person to greet. Default `"World"`.
## Outputs
### `time`
The time we greeted you.
## Example usage
```yaml
2022-10-14 14:13:12 +10:00
uses: actions/hello-world-docker-action@main
2019-08-06 18:52:31 -07:00
with:
who-to-greet: 'Mona the Octocat'
```