From d9ed19c59968176005201c591c922b2dcd5e7e3d Mon Sep 17 00:00:00 2001 From: Andrew Thrasher Date: Thu, 23 Jan 2025 12:55:34 -0500 Subject: [PATCH] chore: check GitHub context --- .github/workflows/toml-check.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/toml-check.yml diff --git a/.github/workflows/toml-check.yml b/.github/workflows/toml-check.yml new file mode 100644 index 00000000..11baf493 --- /dev/null +++ b/.github/workflows/toml-check.yml @@ -0,0 +1,25 @@ +name: toml-check + +on: + push: + branches: + - main + pull_request: + +env: + GH_TOKEN: ${{ github.token }} + +jobs: + toml-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Check Arena TOML + run: echo "hello" + - name: Check Gauntlet TOML + run: echo "world" + \ No newline at end of file