Skip to content

Commit

Permalink
Fix feetfch missing
Browse files Browse the repository at this point in the history
  • Loading branch information
danshapir committed Oct 29, 2023
1 parent ff73cf7 commit f364d7e
Show file tree
Hide file tree
Showing 138 changed files with 60,302 additions and 424 deletions.
9 changes: 8 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,19 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const core = __importStar(require("@actions/core"));
const bolt_1 = require("@slack/bolt");
const web_api_1 = require("@slack/web-api");
const node_fetch_1 = __importDefault(require("node-fetch"));
const rest_1 = require("@octokit/rest");
const octokit = new rest_1.Octokit({ auth: `token ${process.env.GH_SECRET}` });
const octokit = new rest_1.Octokit({
auth: `token ${process.env.GH_SECRET}`,
request: { fetch: node_fetch_1.default },
});
const token = process.env.SLACK_BOT_TOKEN || "";
const signingSecret = process.env.SLACK_SIGNING_SECRET || "";
const slackAppToken = process.env.SLACK_APP_TOKEN || "";
Expand Down
128 changes: 109 additions & 19 deletions node_modules/.package-lock.json

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

22 changes: 22 additions & 0 deletions node_modules/@octokit/request/node_modules/node-fetch/LICENSE.md

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

Loading

0 comments on commit f364d7e

Please sign in to comment.