Skip to content

Commit 5f36278

Browse files
authored
fix(ci): use correct import syntax
Signed-off-by: Aviv Keller <me@aviv.sh>
1 parent fefbf49 commit 5f36278

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/find-inactive-collaborators.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ jobs:
2727
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
2828
with:
2929
script: |
30-
const report = await import("${{github.workspace}}/.github/scripts/report-inactive-collaborators.mjs");
30+
const { default: report } = await import("${{github.workspace}}/.github/scripts/report-inactive-collaborators.mjs");
3131
report(github, exec);

0 commit comments

Comments
 (0)