diff --git a/.env.example b/.env.example index fa18bd1..3ed1486 100644 --- a/.env.example +++ b/.env.example @@ -9,7 +9,7 @@ ACTIONS_STEP_DEBUG=true # GitHub Actions inputs should follow `INPUT_` format (case-sensitive). # Hyphens should not be converted to underscores! -INPUT_MILLISECONDS=2400 +INPUT_PROMPT=hello # GitHub Actions default environment variables. These are set for every run of a # workflow and can be used in your actions. Setting the value here will override diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6d2861..a30fbeb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,7 @@ on: permissions: contents: read + models: read jobs: test-typescript: @@ -57,8 +58,8 @@ jobs: id: test-action uses: ./ with: - milliseconds: 2000 + prompt: hello - name: Print Output id: output - run: echo "${{ steps.test-action.outputs.time }}" + run: echo "${{ steps.test-action.outputs.response }}"