Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/persteenolsen/hello-world-docker-action
A simple Docker App with GitHub Action
https://github.com/persteenolsen/hello-world-docker-action
Last synced: 29 days ago
JSON representation
A simple Docker App with GitHub Action
- Host: GitHub
- URL: https://github.com/persteenolsen/hello-world-docker-action
- Owner: persteenolsen
- License: mit
- Created: 2022-08-30T12:39:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-15T13:51:00.000Z (over 2 years ago)
- Last Synced: 2024-11-07T09:46:25.703Z (3 months ago)
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- 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'
```