From d257c8d3521761338217339c154c5c6560e1bbe5 Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Mon, 7 Jul 2025 09:42:02 -0400 Subject: [PATCH] fix(icr): use correct path --- .github/workflows/inactive-collaborator-report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/inactive-collaborator-report.yml b/.github/workflows/inactive-collaborator-report.yml index 1fa3819..a28bc44 100644 --- a/.github/workflows/inactive-collaborator-report.yml +++ b/.github/workflows/inactive-collaborator-report.yml @@ -28,5 +28,5 @@ jobs: uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 with: script: | - const { default: report } = await import("${{github.workspace}}/.github/scripts/report-inactive-collaborators.mjs"); + const { default: report } = await import("${{github.workspace}}/.github/scripts/inactive-collaborators-report.mjs"); report(github, context);