-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (28 loc) · 833 Bytes
/
main.yml
File metadata and controls
29 lines (28 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
on:
pull_request:
types:
- opened
- synchronize
branches:
- main
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: javascript-github-action
steps:
- name: Hello world action step
id: hello
uses: hpsantos/javascript-github-action@main
with:
who-to-greet: "Mona the Octocat"
# Use the output from the `hello` step
# - name: Get the output time from hello
# run: echo "The time was ${{ steps.hello.outputs.time }}"
# - name: Wait some miliseconds
# id: wait
# uses: hpsantos/typescript-github-action@v1.1
# with:
# miliseconds: 5000
# # Use the output from the `wait` step
# - name: Get the output time from wait
# run: echo "The time was ${{ steps.wait.outputs.time }}"