We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 473c42a commit 463a8daCopy full SHA for 463a8da
2 files changed
action.yml
@@ -22,5 +22,5 @@ outputs:
22
description: The ID of the comment that was created.
23
24
runs:
25
- using: 'node16'
+ using: 'node20'
26
main: './dist/lib/index.js'
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}`, request: { fetch } });
+ const octokit = new Octokit({ auth: `token ${token}` });
9
const { owner, repo } = context.repo;
10
const body = getInput('body');
11
0 commit comments