From 4c6390bec08069204c0b94f33948a49dce824f99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krys=CC=8Ctof=20Korb?= Date: Tue, 24 Jan 2023 10:13:56 +0100 Subject: [PATCH] Remove outdated GitHub API preview --- index.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/index.js b/index.js index 8d857da..685bc84 100644 --- a/index.js +++ b/index.js @@ -72,9 +72,7 @@ async function run() { try { const token = core.getInput('github-token', { required: true }); - const octokit = new github.GitHub(token, { - previews: ['mockingbird-preview'], - }); + const octokit = new github.GitHub(token); const epics = await getReferencedEpics({ octokit }); await updateEpics({ octokit, epics });