We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4cb39d commit 473c42aCopy full SHA for 473c42a
1 file changed
src/index.ts
@@ -5,7 +5,7 @@ import { context } from '@actions/github';
5
async function run() {
6
try {
7
const token = getInput('token');
8
- const octokit = new Octokit({ auth: `token ${token}` });
+ const octokit = new Octokit({ auth: `token ${token}`, request: { fetch } });
9
const { owner, repo } = context.repo;
10
const body = getInput('body');
11
0 commit comments