Skip to content

Commit 8c6ec28

Browse files
authored
Merge branch 'master' into patch-1
2 parents b2e5c1f + cc603c9 commit 8c6ec28

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

.github/workflows/generate-schema.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Test Generate Schema
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
schedule:
9+
- cron: "0 0 * * *" # Run at 00:00 UTC everyday
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Setup .NET Core
19+
uses: actions/setup-dotnet@v1
20+
with:
21+
dotnet-version: 3.1.x
22+
23+
- name: Install dependencies
24+
run: dotnet restore
25+
26+
- name: Generate
27+
run: dotnet run --project ./Tools/Generate/Generate.csproj -- ${{ github.token }} ./Octokit.GraphQL/
28+
29+
- name: Build
30+
run: dotnet build

docs/writing-queries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Writing Queries
22

3-
Note that this guide assumes you are familiar withthe GraphQL query syntax. If you're not,
3+
Note that this guide assumes you are familiar with the GraphQL query syntax. If you're not,
44
you can read more about it [here](https://graphql.org/learn/).
55

66
## The Root Query
@@ -161,4 +161,4 @@ var query = new Query()
161161
i.Title,
162162
}).ToList(),
163163
});
164-
```
164+
```

0 commit comments

Comments
 (0)