project-version-check/.github/workflows/main.yaml
Shakar 5952ecf8a3
Adds main.yaml
Signed-off-by: Shakar <5h4k4r.b4kr@gmail.com>
2023-09-11 10:36:06 +03:00

21 lines
441 B
YAML

name: Test Action
on: [push]
jobs:
hello-world-job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Hello world action step
uses: ./github/actions/action.yaml
id: hello
with:
who-to-greet: "John"
- name: Print the greeting's output
run: echo "The greeting was ${{ steps.hello.outputs.greeting }}"