mirror of
https://github.com/ditkrg/project-version-check.git
synced 2026-01-22 22:06:42 +00:00
21 lines
415 B
YAML
21 lines
415 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@v4
|
|
|
|
- name: Hello world action step
|
|
uses: ./
|
|
id: hello
|
|
with:
|
|
who-to-greet: "John"
|
|
|
|
- name: Print the greeting's output
|
|
run: echo "The greeting was ${{ steps.hello.outputs.greeting }}"
|