revert back to my changes

Signed-off-by: Shakar <5h4k4r.b4kr@gmail.com>
This commit is contained in:
Shakar 2023-09-11 10:54:48 +03:00
parent 95f8fd7d05
commit 74914ff987
No known key found for this signature in database
GPG Key ID: DA55A26823AE3C28
2 changed files with 10 additions and 9 deletions

View File

@ -1,19 +1,20 @@
name: Test Action
on: [push] on: [push]
jobs: jobs:
hello_world_job: hello-world-job:
runs-on: ubuntu-latest runs-on: ubuntu-latest
name: A job to say hello name: A job to say hello
steps: steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout - name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v4
- name: Hello world action step - name: Hello world action step
uses: ./ # Uses an action in the root directory uses: ./.github/actions/action
id: hello id: hello
with: with:
who-to-greet: "Mona the Octocat" who-to-greet: "John"
# Use the output from the `hello` step
- name: Get the output time - name: Print the greeting's output
run: echo "The time was ${{ steps.hello.outputs.time }}" run: echo "The greeting was ${{ steps.hello.outputs.greeting }}"