From 233d9281030a5baab7ae478444af6dbd2145e702 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Tue, 30 Apr 2024 14:56:02 -0400 Subject: [PATCH] attempt context workflow --- .github/workflows/context.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/context.yml diff --git a/.github/workflows/context.yml b/.github/workflows/context.yml new file mode 100644 index 000000000..853954dff --- /dev/null +++ b/.github/workflows/context.yml @@ -0,0 +1,12 @@ +name: Context Examples + +on: ['push'] + +jobs: + my-context: + runs-on: ubunutu-latest + steps: + - name: "My Step" + run: echo "Hello! $MY_ACTION" + env: + MY_ACTION: ${{ github.action }}