Parking Lot - Q&A
β Please post here any questions you may have during the training.
π Thank you! We appreciate your contribution to this project.
π Thank you! We appreciate your contribution to this project.
π Thank you! We appreciate your contribution to this project.
Quick questions please, just wondering where can I find the action βuses: actions/hello-world-javascript-action@v1β from the current repo?
The context is as below from Activity 1
# This step uses GitHub's hello-world-javascript-action: https://github.com/actions/hello-world-javascript-action
- name: Hello world
**uses: actions/hello-world-javascript-action@v1**
with:
who-to-greet: "Mona the Octocat"
id: hello
# This step prints an output (time) from the previous step's action.
- name: Echo the greeting's time
run: echo 'The time was ${{ steps.hello.outputs.time }}.'
Quick questions please, just wondering where can I find the action βuses: actions/hello-world-javascript-action@v1β from the current repo?
Hi @vipwlb,
The action itself is defined under the "actions" organization at this link: hello-world-javascript-action
You can find all other public actions under the same organization: GitHub Actions
Thanks, Calin