14 lines
375 B
YAML
14 lines
375 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
hello_world_job:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
uses: actions/checkout@v2
|
|
- name: Hello world action step
|
|
uses: ./.github/custom-actions/sourcehub-layer
|
|
id: hello
|
|
with:
|
|
who-to-greet: 'Mona the Octocat'
|
|
- name: Get the output time
|
|
run: echo "The time was ${{ steps.hello.outputs.time }}" |