No description
Find a file
2026-02-18 16:07:59 -05:00
.github Bump actions/upload-artifact from 5 to 6 2025-12-15 15:09:00 +00:00
__fixtures__ Convert to ESM 2025-01-08 11:40:16 -05:00
__tests__ Convert to ESM 2025-01-08 11:40:16 -05:00
badges Rebuild dist 2025-03-10 12:21:13 -04:00
dist Rebuild dist 2026-02-18 16:06:58 -05:00
src Set node version in package.json 2025-01-09 17:25:05 -05:00
.checkov.yml Skip check 2025-10-31 10:29:08 -04:00
.gitattributes Enforce line-ending style 2023-11-28 12:45:43 -05:00
.gitignore Convert to ESM 2025-01-08 11:40:16 -05:00
.licensed.yml Fix sourcemap and add licensed 2025-02-12 19:05:48 -05:00
.markdown-lint.yml Convert to ESM 2025-01-08 11:40:16 -05:00
.node-version Update Node.js version to 24.x in config files 2025-07-30 14:40:53 +01:00
.prettierignore Fix sourcemap and add licensed 2025-02-12 19:05:48 -05:00
.prettierrc.yml Convert to ESM 2025-01-08 11:40:16 -05:00
.yaml-lint.yml Fix sourcemap and add licensed 2025-02-12 19:05:48 -05:00
action.yml Update Node.js version to 24.x in config files 2025-07-30 14:40:53 +01:00
actionlint.yml Add actionlint config 2025-08-07 10:35:01 -04:00
CODEOWNERS Convert to ESM 2025-01-08 11:40:16 -05:00
eslint.config.mjs Convert to ESM 2025-01-08 11:40:16 -05:00
jest.config.js Convert to ESM 2025-01-08 11:40:16 -05:00
LICENSE Update LICENSE to standard 2023-11-16 10:28:38 -05:00
package-lock.json Merge remote-tracking branch 'origin/dependabot/npm_and_yarn/lodash-4.17.23' 2026-02-18 16:06:26 -05:00
package.json Merge remote-tracking branch 'origin/dependabot/npm_and_yarn/eslint/compat-2.0.1' 2026-02-18 16:06:19 -05:00
README.md Fix sourcemap and add licensed 2025-02-12 19:05:48 -05:00
rollup.config.js Fix sourcemap and add licensed 2025-02-12 19:05:48 -05: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.

Create Your Own Action

To create your own action, you can use this repository as a template! Just follow the below instructions:

  1. Click the Use this template button at the top of the repository
  2. Select Create a new repository
  3. Select an owner and name for your new repository
  4. Click Create repository
  5. Clone your new repository

Caution

Make sure to remove or update the CODEOWNERS file! For details on how to use this file, see About code owners.

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

Dependency License Management

This template includes a GitHub Actions workflow, licensed.yml, that uses Licensed to check for dependencies with missing or non-compliant licenses. This workflow is initially disabled. To enable the workflow, follow the below steps.

  1. Open licensed.yml

  2. Uncomment the following lines:

    # pull_request:
    #   branches:
    #     - main
    # push:
    #   branches:
    #     - main
    
  3. Save and commit the changes

Once complete, this workflow will run any time a pull request is created or changes pushed directly to main. If the workflow detects any dependencies with missing or non-compliant licenses, it will fail the workflow and provide details on the issue(s) found.

Updating Licenses

Whenever you install or update dependencies, you can use the Licensed CLI to update the licenses database. To install Licensed, see the project's Readme.

To update the cached licenses, run the following command:

licensed cache

To check the status of cached licenses, run the following command:

licensed status