We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c15463 commit e5c8b1bCopy full SHA for e5c8b1b
action.yml
@@ -11,3 +11,9 @@ runs:
11
steps:
12
- name: Checkout
13
uses: actions/checkout@v5
14
+ - name: Execute some javascript
15
+ uses: actions/github-script@v8
16
+ with:
17
+ script: |
18
+ const script = require("${{github.action_path}}/dist/index.js")
19
+ script({core})
index.js
@@ -0,0 +1,3 @@
1
+export default function(core) {
2
+ console.log("fsdoo")
3
+}
0 commit comments