diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 0000000..2e15771 --- /dev/null +++ b/.github/workflows/main.yaml @@ -0,0 +1,15 @@ +on: [push] + +jobs: + hello_world_job: + runs-on: ubuntu-latest + name: A job to say hello + steps: + - name: Hello world action step + uses: baloice-incubator/gitopscli-action/.github/actions/gitopscli/action.yaml@main # Uses an action in the root directory + id: GitOpsCli + with: + command: '-h' + # Use the output from the `hello` step + - name: Get the output time + run: echo "The time was ${{ steps.hello.outputs.time }}"