Skip to content

Commit bbcac9d

Browse files
committed
rollback
1 parent bc3f517 commit bbcac9d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
1818
Object.defineProperty(exports, "__esModule", { value: true });
1919
const core = __importStar(require("@actions/core"));
2020
const Github = require('@actions/github');
21-
const { Octokit } = require('@octokit/rest').plugin(require('@octokit/plugin-retry'));
21+
const Octokit = require('@octokit/rest').plugin(require('@octokit/plugin-retry'));
2222
const githubToken = core.getInput('github_token', { required: true });
2323
const context = Github.context;
2424
const octokit = new Octokit({ auth: githubToken });

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fork-sync",
3-
"version": "1.1.9",
3+
"version": "1.1.10",
44
"private": true,
55
"description": "Keep your fork up to date",
66
"main": "lib/main.js",

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as core from '@actions/core';
22
const Github = require('@actions/github');
3-
const { Octokit } = require('@octokit/rest').plugin(require('@octokit/plugin-retry'));
3+
const Octokit = require('@octokit/rest').plugin(require('@octokit/plugin-retry'));
44
const githubToken = core.getInput('github_token', { required: true });
55
const context = Github.context;
66
const octokit = new Octokit({auth: githubToken});

0 commit comments

Comments
 (0)