diff --git a/.github/workflows/reusable-workflow.yml b/.github/workflows/reusable-workflow.yml index ecd0805..700e203 100644 --- a/.github/workflows/reusable-workflow.yml +++ b/.github/workflows/reusable-workflow.yml @@ -1,19 +1,8 @@ name: Reusable Workflow on: - workflow_dispatch: + workflow_call: inputs: node: required: true type: string - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Output the input value - run: | - echo "The node version to use is: ${{ inputs.node }}"