Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcbruins/actionstraining-07-04-22
Our own action
https://github.com/marcbruins/actionstraining-07-04-22
Last synced: 10 days ago
JSON representation
Our own action
- Host: GitHub
- URL: https://github.com/marcbruins/actionstraining-07-04-22
- Owner: MarcBruins
- License: mit
- Created: 2022-04-07T09:09:13.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-07T09:10:08.000Z (almost 3 years ago)
- Last Synced: 2024-11-07T11:41:12.185Z (2 months ago)
- Language: Dockerfile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- 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'
```