Skip to content

Commit bd372cc

Browse files
authored
Merge branch 'main' into automation/yarn-upgrade
2 parents b324b2e + 1894f2d commit bd372cc

28 files changed

Lines changed: 3888 additions & 68 deletions

File tree

.github/workflows/request-cli-integ-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
# Needs to run with PROJEN_GITHUB_TOKEN because we need permissions to force push the branch
4040
token: ${{ secrets.PROJEN_GITHUB_TOKEN }}
41-
ref: ${{ github.event.pull_request.head.ref }}
41+
ref: ${{ github.event.pull_request.head.sha }}
4242
repository: ${{ github.event.pull_request.head.repo.full_name }}
4343
- name: Submit to test-pipeline
4444
run: |
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
schema {
2+
query: Query
3+
mutation: Mutation
4+
}
5+
6+
type Query {
7+
getPost(id:ID!): Post
8+
allPosts: [Post]
9+
}
10+
11+
type Mutation {
12+
addPost(id: ID!, author: String!, title: String, content: String, url: String): Post!
13+
}
14+
15+
type Post {
16+
id: ID!
17+
author: String!
18+
title: String
19+
content: String
20+
url: String
21+
ups: Int
22+
downs: Int
23+
relatedPosts: [Post]
24+
relatedPostsMaxBatchSize: [Post]
25+
}

packages/@aws-cdk-testing/framework-integ/test/aws-appsync/test/integ.graphql-rds-serverlessv2.js.snapshot/appsync-rds-serverlessV2.assets.json

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)