Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump @octokit/graphql-schema from 12.29.0 to 12.30.0 #826

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 17, 2022

Bumps @octokit/graphql-schema from 12.29.0 to 12.30.0.

Release notes

Sourced from @​octokit/graphql-schema's releases.

v12.30.0

12.30.0 (2022-11-17)

Features

  • {Organization,Sponsorable,User}#includeAsSponsor, SponsorsListing#featuredItems (#676) (8324440)
Commits
  • 8324440 feat: {Organization,Sponsorable,User}#includeAsSponsor, `SponsorsListing#fe...
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bumps [@octokit/graphql-schema](https://github.com/octokit/graphql-schema) from 12.29.0 to 12.30.0.
- [Release notes](https://github.com/octokit/graphql-schema/releases)
- [Commits](octokit/graphql-schema@v12.29.0...v12.30.0)

---
updated-dependencies:
- dependency-name: "@octokit/graphql-schema"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 17, 2022
@github-actions
Copy link

github-actions bot commented Nov 17, 2022

output of yarn all
yarn run v1.22.19
$ yarn build && yarn format && yarn lint && yarn package && yarn test
$ tsc
$ prettier --write **/*.ts
__tests__/comment.test.ts 484ms
__tests__/config.test.ts 91ms
src/comment.ts 46ms
src/config.ts 31ms
src/main.ts 17ms
$ eslint src/**/*.ts
$ ncc build --source-map --license licenses.txt
ncc: Version 0.34.0
ncc: Compiling file index.js into CJS
  39kB  dist/licenses.txt
  40kB  dist/sourcemap-register.js
 491kB  dist/index.js.map
 666kB  dist/index.js
 491kB  dist/index.js.map
1236kB  [2384ms] - ncc 0.34.0
$ jest
::debug::followSymbolicLinks 'false'
::debug::matchDirectories 'false'
::debug::followSymbolicLinks 'false'
::debug::implicitDescendants 'true'
::debug::matchDirectories 'false'
::debug::omitBrokenSymbolicLinks 'true'
::debug::Search path '/home/runner/work/sticky-pull-request-comment/sticky-pull-request-comment/__tests__/assets/result'
::debug::followSymbolicLinks 'false'
::debug::matchDirectories 'false'
::debug::followSymbolicLinks 'false'
::debug::implicitDescendants 'true'
::debug::matchDirectories 'false'
::debug::omitBrokenSymbolicLinks 'true'
::debug::Search path '/home/runner/work/sticky-pull-request-comment/sticky-pull-request-comment/__tests__/assets'
::debug::followSymbolicLinks 'false'
::debug::matchDirectories 'false'
::debug::followSymbolicLinks 'false'
::debug::implicitDescendants 'true'
::debug::matchDirectories 'false'
::debug::omitBrokenSymbolicLinks 'true'
::debug::Search path '/home/runner/work/sticky-pull-request-comment/sticky-pull-request-comment/__tests__/assets/not_exists'
PASS __tests__/config.test.ts
  ✓ repo (136 ms)
  ✓ header (32 ms)
  ✓ append (31 ms)
  ✓ recreate (57 ms)
  ✓ delete (76 ms)
  ✓ hideOldComment (86 ms)
  ✓ hideAndRecreate (41 ms)
  ✓ hideClassify (32 ms)
  ✓ hideDetails (30 ms)
  ✓ message (30 ms)
  ✓ ignore_empty (30 ms)
  path
    ✓ when exists return content of a file (47 ms)
    ✓ glob match files (49 ms)
    ✓ when not exists return null string (34 ms)

PASS __tests__/comment.test.ts
  ✓ findPreviousComment (9 ms)
  ✓ deleteComment (7 ms)
  ✓ minimizeComment (6 ms)
  updateComment
    ✓ with comment body (1 ms)
    ✓ without comment body and previous body
  createComment
    ✓ with comment body or previousBody (1 ms)
    ✓ without comment body and previousBody
  getBodyOf
    ✓ receive {"body": "
    <details>
    <summary>title</summary>

    content
    </details>
    <!-- Sticky Pull Request CommentTypeA -->
  "}, false, false and returns undefined
    ✓ receive {}, true, false and returns undefined (1 ms)
    ✓ receive {"body": "
    <details>
    <summary>title</summary>

    content
    </details>
    <!-- Sticky Pull Request CommentTypeA -->
  "}, true, false and returns 
    <details>
    <summary>title</summary>

    content
    </details>
    <!-- Sticky Pull Request CommentTypeA -->
  
    ✓ receive {}, true, true and returns undefined
    ✓ receive {"body": "hello there
<!-- Sticky Pull Request CommentTypeA -->"}, true, true and returns hello there
<!-- Sticky Pull Request CommentTypeA --> (1 ms)
    ✓ receive {"body": "
    <details>
    <summary>title</summary>

    content
    </details>
    <!-- Sticky Pull Request CommentTypeA -->
  "}, true, true and returns 
    <details>
    <summary>title</summary>

    content
    </details>
    <!-- Sticky Pull Request CommentTypeA -->
  

Test Suites: 2 passed, 2 total
Tests:       27 passed, 27 total
Snapshots:   0 total
Time:        4.384 s
Ran all test suites.
Done in 23.73s.

The build is over.

@marocchino marocchino merged commit ec14972 into main Nov 17, 2022
@marocchino marocchino deleted the dependabot/npm_and_yarn/octokit/graphql-schema-12.30.0 branch November 17, 2022 22:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant