breaking: Remove the deprecated Statistics#value field #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Schema | |
on: | |
push: | |
branches: "**" | |
tags-ignore: ["**"] | |
pull_request: | |
permissions: | |
checks: write | |
jobs: | |
test: | |
name: Annotate Breaking Changes | |
runs-on: ubuntu-latest | |
if: "${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: GraphQL Inspector | |
uses: kamilkisiela/graphql-inspector@master | |
with: | |
schema: 'main:schema.graphqls' | |
approve-label: breaking |