From 79ecadad14f64e4592ac29ea72ff75c9682c0217 Mon Sep 17 00:00:00 2001 From: Mohammed Kaddouri Date: Tue, 14 May 2024 16:18:29 +0200 Subject: [PATCH] First test --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..327e608 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +on: [push] + +jobs: + hello_world_job: + runs-on: ubuntu-latest + name: A job to say hello + steps: + - uses: actions/checkout@v4 + - id: foo + uses: MohammedSentry/hello-world-composite-action@v1 + with: + who-to-greet: 'Mona the Octocat' + - run: echo random-number "$RANDOM_NUMBER" + shell: bash + env: + RANDOM_NUMBER: ${{ steps.foo.outputs.random-number }}