You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- uses: catalystcommunity/action-javascript-action-template@undefinedwith:
# Who to greet# Default: Worldwho-to-greet: ""
Input
Description
Default
Required
who-to-greet
Who to greet
World
true
Output
Description
Default
Required
time
The time we greeted you
Example usage
on: [push]jobs:
hello_world_job:
runs-on: ubuntu-latestname: A job to say hellosteps:
- name: Hello world action stepid: hellouses: swarm-io/action-javascript-action-template@v1with:
who-to-greet: "Mona the Octocat"# Use the output from the `hello` step
- name: Get the output timerun: echo "The time was ${{ steps.hello.outputs.time }}"