Skip to content

Instantly share code, notes, and snippets.

@twyle
Last active May 19, 2022 12:10
Show Gist options
  • Save twyle/f19f661396a5f404aaed486d8511a497 to your computer and use it in GitHub Desktop.
Save twyle/f19f661396a5f404aaed486d8511a497 to your computer and use it in GitHub Desktop.
on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Hello world action step
id: hello
uses: twyle/[email protected]
with:
who-to-greet: 'Lyle Okoth'
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment