From d7db51b992a1f0ebc09e633c1dc7111b99c40064 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Tue, 27 Feb 2024 08:46:47 +0000 Subject: [PATCH] Update action.yml --- src/action.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/action.yml b/src/action.yml index f1ce092..70995b9 100644 --- a/src/action.yml +++ b/src/action.yml @@ -17,5 +17,13 @@ inputs: description: 'Organization name' required: true runs: - using: 'node20' - main: 'index.ts' + using: 'composite' + steps: + - name: Run TypeScript file + run: tsx ./index.ts + env: + INPUT_BODY: ${{ inputs.body }} + INPUT_ISSUENUMBER: ${{ inputs.issueNumber }} + INPUT_SENDER: ${{ inputs.sender }} + INPUT_REPO: ${{ inputs.repo }} + INPUT_ORG: ${{ inputs.org }}