Skip to content

Commit

Permalink
rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
tgymnich committed Aug 16, 2020
1 parent bc3f517 commit bbcac9d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
Object.defineProperty(exports, "__esModule", { value: true });
const core = __importStar(require("@actions/core"));
const Github = require('@actions/github');
const { Octokit } = require('@octokit/rest').plugin(require('@octokit/plugin-retry'));
const Octokit = require('@octokit/rest').plugin(require('@octokit/plugin-retry'));
const githubToken = core.getInput('github_token', { required: true });
const context = Github.context;
const octokit = new Octokit({ auth: githubToken });
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fork-sync",
"version": "1.1.9",
"version": "1.1.10",
"private": true,
"description": "Keep your fork up to date",
"main": "lib/main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as core from '@actions/core';
const Github = require('@actions/github');
const { Octokit } = require('@octokit/rest').plugin(require('@octokit/plugin-retry'));
const Octokit = require('@octokit/rest').plugin(require('@octokit/plugin-retry'));
const githubToken = core.getInput('github_token', { required: true });
const context = Github.context;
const octokit = new Octokit({auth: githubToken});
Expand Down

0 comments on commit bbcac9d

Please sign in to comment.