Skip to content

Commit f1f9821

Browse files
committed
Fix script loading
1 parent 254e05f commit f1f9821

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/assign-issue-owners.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,9 @@ jobs:
3131

3232
- name: Parse component label and assign owners
3333
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
34+
env:
35+
NODE_PATH: ${{ github.workspace }}/.github/scripts/node_modules
3436
with:
35-
script-path: .github/scripts/assign-issue-owners.js
37+
script: |
38+
const script = require('./.github/scripts/assign-issue-owners.js');
39+
await script({ github, context, core });

0 commit comments

Comments
 (0)