Skip to content

Commit

Permalink
chore(release): 1.1.2 [skip ci]
Browse files Browse the repository at this point in the history
## [1.1.2](v1.1.1...v1.1.2) (2021-10-14)
  • Loading branch information
semantic-release-bot committed Oct 14, 2021
1 parent 96d6880 commit 8e2951c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 48 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## [1.1.2](https://github.com/bbeesley/gha-auto-dependabot-rebase/compare/v1.1.1...v1.1.2) (2021-10-14)

## [1.1.1](https://github.com/bbeesley/gha-auto-dependabot-rebase/compare/v1.1.0...v1.1.1) (2021-09-21)

# [1.1.0](https://github.com/bbeesley/gha-auto-dependabot-rebase/compare/v1.0.2...v1.1.0) (2021-08-10)
Expand Down
4 changes: 2 additions & 2 deletions dist/main.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4304,7 +4304,7 @@ exports.resetCaches = resetCaches;
exports.disableFragmentWarnings = disableFragmentWarnings;
exports.enableExperimentalFragmentVariables = enableExperimentalFragmentVariables;
exports.disableExperimentalFragmentVariables = disableExperimentalFragmentVariables;
exports.default = void 0;
exports["default"] = void 0;

var _tslib = __webpack_require__(/*! tslib */ "./node_modules/graphql-tag/node_modules/tslib/tslib.es6.js");

Expand Down Expand Up @@ -4450,7 +4450,7 @@ var extras = {

gql["default"] = gql;
var _default = gql;
exports.default = _default;
exports["default"] = _default;

/***/ }),

Expand Down
48 changes: 2 additions & 46 deletions src/generated/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32280,56 +32280,12 @@ export type AddCommentToPrMutationVariables = Exact<{
}>;


export type AddCommentToPrMutation = (
{ __typename?: 'Mutation' }
& { addComment?: Maybe<(
{ __typename?: 'AddCommentPayload' }
& { commentEdge?: Maybe<(
{ __typename?: 'IssueCommentEdge' }
& { node?: Maybe<(
{ __typename?: 'IssueComment' }
& Pick<IssueComment, 'id'>
)> }
)> }
)> }
);
export type AddCommentToPrMutation = { __typename?: 'Mutation', addComment?: { __typename?: 'AddCommentPayload', commentEdge?: { __typename?: 'IssueCommentEdge', node?: { __typename?: 'IssueComment', id: string } | null | undefined } | null | undefined } | null | undefined };

export type GetPullRequestsQueryVariables = Exact<{
owner: Scalars['String'];
repo: Scalars['String'];
}>;


export type GetPullRequestsQuery = (
{ __typename?: 'Query' }
& { repository?: Maybe<(
{ __typename?: 'Repository' }
& Pick<Repository, 'id'>
& { pullRequests: (
{ __typename?: 'PullRequestConnection' }
& { edges?: Maybe<Array<Maybe<(
{ __typename?: 'PullRequestEdge' }
& { node?: Maybe<(
{ __typename?: 'PullRequest' }
& Pick<PullRequest, 'id' | 'title' | 'number'>
& { author?: Maybe<(
{ __typename?: 'Bot' }
& Pick<Bot, 'login'>
) | (
{ __typename?: 'EnterpriseUserAccount' }
& Pick<EnterpriseUserAccount, 'login'>
) | (
{ __typename?: 'Mannequin' }
& Pick<Mannequin, 'login'>
) | (
{ __typename?: 'Organization' }
& Pick<Organization, 'login'>
) | (
{ __typename?: 'User' }
& Pick<User, 'login'>
)> }
)> }
)>>> }
) }
)> }
);
export type GetPullRequestsQuery = { __typename?: 'Query', repository?: { __typename?: 'Repository', id: string, pullRequests: { __typename?: 'PullRequestConnection', edges?: Array<{ __typename?: 'PullRequestEdge', node?: { __typename?: 'PullRequest', id: string, title: string, number: number, author?: { __typename?: 'Bot', login: string } | { __typename?: 'EnterpriseUserAccount', login: string } | { __typename?: 'Mannequin', login: string } | { __typename?: 'Organization', login: string } | { __typename?: 'User', login: string } | null | undefined } | null | undefined } | null | undefined> | null | undefined } } | null | undefined };

0 comments on commit 8e2951c

Please sign in to comment.