2023-11-28 12:45:43 -05:00
2023-09-15 10:56:32 -04:00
2023-11-17 09:25:38 -05:00
2023-09-15 10:56:32 -04:00
2023-11-28 12:45:43 -05:00
2023-09-15 10:58:20 -04:00
2023-09-15 10:55:34 -04:00
2023-09-15 10:56:32 -04:00
2023-11-16 10:28:38 -05:00
2023-11-20 17:51:38 +00:00
2023-09-15 10:56:32 -04:00

Hello, World! JavaScript Action

GitHub Super-Linter CI

This action prints Hello, World! or Hello, <who-to-greet>! to the log. To learn how this action was built, see Creating a JavaScript action.

Usage

Here's an example of how to use this action in a workflow file:

name: Example Workflow

on:
  workflow_dispatch:
    inputs:
      who-to-greet:
        description: Who to greet in the log
        required: true
        default: 'World'
        type: string

jobs:
  say-hello:
    name: Say Hello
    runs-on: ubuntu-latest

    steps:
      # Change @main to a specific commit SHA or version tag, e.g.:
      # actions/hello-world-javascript-action@e76147da8e5c81eaf017dede5645551d4b94427b
      # actions/hello-world-javascript-action@v1.2.3
      - name: Print to Log
        id: print-to-log
        uses: actions/hello-world-javascript-action@main
        with:
          who-to-greet: ${{ inputs.who-to-greet }}

For example workflow runs, check out the Actions tab! 🚀

Inputs

Input Default Description
who-to-greet World The name of the person to greet

Outputs

Output Description
time The time we greeted you
Description
A template to demonstrate how to build a JavaScript action.
Readme MIT 17 MiB
Languages
JavaScript 100%