Skip to content

Commit

Permalink
FIx import of Octokit rest service (#16105)
Browse files Browse the repository at this point in the history
* FIx import of octokit rest service

* Set specific version of @octokit/rest to install

* Revert "FIx import of octokit rest service"

This reverts commit 01c57dd.

* FIx import of octokit rest service(without formatting)
  • Loading branch information
KonstantinTyukalov authored Apr 7, 2022
1 parent 2a525c5 commit e0df424
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
version: 10.x

# Need to explicitly install @octokit/rest seperately or else it will mess with our typings.
- run: npm install && npm install @octokit/rest
- run: npm install && npm install @octokit/rest@18.12.x

- name: File bugs
run: node ci/file-bugs.js
Expand Down
2 changes: 1 addition & 1 deletion ci/file-bugs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const fs = require('fs');
const Octokit = require('@octokit/rest');
const { Octokit } = require('@octokit/rest');
const path = require('path');
const jsyaml = require('js-yaml');
const azdev = require('azure-devops-node-api');
Expand Down

0 comments on commit e0df424

Please sign in to comment.