From 5cd158247ee08d532974371d5323480e583dcafc Mon Sep 17 00:00:00 2001 From: TJ Murphy <1796+teej@users.noreply.github.com> Date: Tue, 20 Feb 2024 15:44:07 -0800 Subject: [PATCH] action --- .github/workflows/main.yml | 15 +++++++++++++++ action.yaml => action.yml | 0 2 files changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml rename action.yaml => action.yml (100%) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..fa6a2ed --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +on: [push] + +jobs: + snowflake_gitops: + runs-on: ubuntu-latest + name: Snowflake GitOps example + steps: + - name: Hello world action step + id: hello + uses: Titan-Systems/snowflake-gitops + with: + who-to-greet: 'Mona the Octocat' + # Use the output from the `hello` step + - name: Get the output time + run: echo "The time was ${{ steps.hello.outputs.time }}" diff --git a/action.yaml b/action.yml similarity index 100% rename from action.yaml rename to action.yml