From 889f5db4a94bc3770a66766a8eec66940b26b203 Mon Sep 17 00:00:00 2001 From: Matt Mumm Date: Wed, 23 Oct 2024 18:21:00 -0700 Subject: [PATCH] updating lesson --- .github/workflows/contexts.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/contexts.yaml diff --git a/.github/workflows/contexts.yaml b/.github/workflows/contexts.yaml new file mode 100644 index 0000000..caacef4 --- /dev/null +++ b/.github/workflows/contexts.yaml @@ -0,0 +1,15 @@ +name: contexts +on: + push: + paths: + - "**contexts.yaml" +jobs: + show_contexts: + runs-on: ubuntu-latest + steps: + - name: show contexts + run: | + echo "github: ${{github}}" + echo "secrets: ${{secrets}}" + echo "job: ${{job}}" + echo "runner: ${{runner}}" \ No newline at end of file