From 64a8b64b522eca5b5325271c84cc5f600f5ab987 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Sun, 18 Jan 2026 13:05:17 +0100 Subject: [PATCH] fix: remove duplicate core import in approve-contributor workflow actions/github-script already provides core as a global --- .github/workflows/approve-contributor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/approve-contributor.yml b/.github/workflows/approve-contributor.yml index 8f18647b..570061e6 100644 --- a/.github/workflows/approve-contributor.yml +++ b/.github/workflows/approve-contributor.yml @@ -23,7 +23,6 @@ jobs: with: script: | const fs = require('fs'); - const core = require('@actions/core'); const issueAuthor = context.payload.issue.user.login; const commenter = context.payload.comment.user.login;