Skip to content

Commit

Permalink
chore: check GitHub context
Browse files Browse the repository at this point in the history
  • Loading branch information
adthrasher committed Jan 23, 2025
1 parent 8c5e259 commit d9ed19c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/toml-check.yml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit d9ed19c

Please sign in to comment.