File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed
packages/services/api/src/modules/oidc-integrations Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 25
25
with :
26
26
fetch-depth : 2
27
27
28
+ - name : setup environment
29
+ uses : ./.github/actions/setup
30
+ with :
31
+ actor : graphql-schema-check
32
+
28
33
- name : check pull request label
29
34
if : contains(github.event.pull_request.labels.*.name, 'non-breaking')
30
35
run : echo "safeFlag=--forceSafe" >> $GITHUB_OUTPUT
35
40
HIVE_TOKEN : ${{ secrets.hiveToken }}
36
41
run : |
37
42
curl -sSL https://graphql-hive.com/install.sh | sh
38
- hive schema:check "packages/services/api/src/modules/*/module.graphql.ts" ${{steps.pr-label-check.outputs.safeFlag }} --github
43
+ hive schema:check "schema.graphql" ${{steps.pr-label-check.outputs.safeFlag }} \
44
+ --github \
45
+ --service "graphql"
Original file line number Diff line number Diff line change 13
13
with :
14
14
fetch-depth : 2
15
15
16
+ - name : setup environment
17
+ uses : ./.github/actions/setup
18
+ with :
19
+ actor : graphql-schema-publish
20
+
16
21
- name : schema publish
17
22
env :
18
23
HIVE_TOKEN : ${{ secrets.hiveToken }}
19
24
run : |
20
25
curl -sSL https://graphql-hive.com/install.sh | sh
21
- hive schema:publish "packages/services/api/src/modules/*/module.graphql.ts" --github
26
+ hive schema:publish "schema.graphql" \
27
+ --github \
28
+ --service "graphql"
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ export default gql`
32
32
): UpdateOIDCDefaultMemberRoleResult!
33
33
}
34
34
35
- type Subscription {
35
+ extend type Subscription {
36
36
"""
37
37
Subscribe to logs from the OIDC provider integration.
38
38
Helpful for debugging failing logins.
You can’t perform that action at this time.
0 commit comments