https://github.com/ppodds/docker-action-test
https://github.com/ppodds/docker-action-test
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ppodds/docker-action-test
- Owner: ppodds
- License: mit
- Created: 2022-07-08T08:08:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-08T08:11:56.000Z (almost 4 years ago)
- Last Synced: 2025-03-06T00:20:43.063Z (over 1 year ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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://help.github.com/en/articles/creating-a-docker-container-action)" in the GitHub Help documentation.
## 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: actions/hello-world-docker-action@master
with:
who-to-greet: 'Mona the Octocat'
```