From 84867676a5baa0843aa7343d44936e94e5296409 Mon Sep 17 00:00:00 2001 From: Bhanu Malhotra <144083659+bhanumalhotra123@users.noreply.github.com> Date: Mon, 13 May 2024 18:45:24 +0530 Subject: [PATCH] attempt context workflow --- .github/workflows/context.yml | 14 ++++++++++++++ 1 file changed, 14 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..64c986609 --- /dev/null +++ b/.github/workflows/context.yml @@ -0,0 +1,14 @@ +name: context-Examples + +on: + push: + +jobs: + my-context: + runs-on: ubuntu-latest + steps: + + - name: "My Step" + run: echo Hello! $MY_ACTION" + env: + MY_ACTION: ${{ github.action }} \ No newline at end of file