Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/graphql-schema-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Graphql Schema Check

on:
pull_request:
branches: [develop]

jobs:
test:
name: Check Schema
runs-on: ubuntu-latest

permissions:
contents: read
checks: write

steps:
- uses: actions/checkout@v6

- uses: graphql-hive/graphql-inspector@master
with:
schema: 'develop:schema.graphql'
annotations: false
approve-label: breaking:change

Loading
Loading