npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

action-input-parser

v1.2.38

Published

Helper for parsing inputs in a GitHub Action

Downloads

267

Readme

Action Input Parser

Node CI Release CI GitHub David

Helper for parsing inputs in a GitHub Action

⭐ Features

🚀 Get started

Install action-input-parser via npm:

npm install action-input-parser

📚 Usage

Import action-input-parser and use it like this:

const parser = require('action-input-parser')

const value = parser.getInput('name')

Example

Let's say you have the following workflow file (see below on how to specify inputs during development):

uses: username/action
with:
    names: |
        Maximilian
        Richard

Pass an options object to the getInput function to specify the array type:

const parser = require('action-input-parser')

const value = parser.getInput('names', {
    type: 'array'
})

// [ 'Maximilian', 'Richard' ]

action-input-parser will parse the names input and return an array.

See below for all options or checkout a few more examples.

⚙️ Configuration

You can pass the following JavaScript object to getInput as the first or second parameter to tell action-input-parser what to parse:

const options = {
    key: 'names',
    type: 'array',
    default: [ 'maximilian' ]
}

parser.getInput(options)

All options

Here are all the options you can use and there default values:

| Name | Description | Required | Default | | ------------- | ------------- | ------------- | ------------- | | key | The key of the input option (can also be an array of keys) | Yes | N/A | | type | The type of the input value (string/boolean/number/array) | No | string | | required | Specify if the input is required | No | false | | default | Specify a default value for the input | No | N/A | | disableable | Specify if the input should be able to be disabled by setting it to false | No | false | | modifier | A function which gets passed the parsed value as a parameter and returns another value | No | N/A |

Key

You can either specify a single key as a string, or multiple keys as an array of strings.

See example

Types

You can specify one of the following types which will determine how the input is parsed:

  • string - default type, the input value will only be trimmed
  • boolean - will parse a boolean based on the yaml 1.2 specification
  • number - will convert the input to a number
  • array - will parse line or comma seperated values to an array

Note: if the input can not be converted to the specifed type, an error is thrown

See example

Required inputs

When you set required to true and the input is not set, action-input-parser will throw an error.

See example

Default values

You can specify a default value for the input which will be used when the input is not set.

See example

Disableable input

If you have an input with a default value but you still want the user to be able to unset the input, set the disableable option to true.

When the input is then set to false, action-input-parser will return undefined instead of your default value.

See example

Modifier function

If your input needs additional processing you can specify a function which will be passed the parsed input value.

See example

Development

If you run your Action locally during development, you can set the inputs as environment variables or specify them in a .env file. action-input-parser will use them as the inputs automatically.

📖 Examples

Here are some examples on how to use action-input-parser:

Basic example

Action Workflow:

uses: username/action
with:
    name: Maximilian

Action code:

const parser = require('action-input-parser')

const value = parser.getInput('name')

// value -> Maximilian

or

const parser = require('action-input-parser')

const value = parser.getInput({
    key: 'name'
})

// value -> Maximilian

Specify a type

Action Workflow:

uses: username/action
with:
    dry_run: true

Action code:

const parser = require('action-input-parser')

const value = parser.getInput({ 
    key: 'dry_run',
    type: 'boolean'
})

// Without setting the type to boolean, the value would have been 'true'

Specify a default value

Action code:

const parser = require('action-input-parser')

const value = parser.getInput({ 
    key: 'name',
    default: 'Maximilian'
})

// If name is not set, Maximilian will be returned as the name

Set an input to be required

Action code:

const parser = require('action-input-parser')

const value = parser.getInput({
    key: 'name',
    required: true
})

// Will throw an error if name is not set

Disable an input

Action Workflow:

uses: username/action
with:
    labels: false

Action code:

const parser = require('action-input-parser')

const value = parser.getInput({
    key: 'labels', 
    default: [ 'merged', 'ready' ],
    disableable: true
})

// Value will be undefined because labels was set to false

Multiple Keys

Action code:

const parser = require('action-input-parser')

const value = parser.getInput({ 
    key: [ 'GITHUB_TOKEN', 'GH_PAT' ]
})

// The first key takes precedence

Modify the parsed input

Action Workflow:

uses: username/action
with:
    name: Maximilian

Action code:

const parser = require('action-input-parser')

const value = parser.getInput({
    key: 'name',
    modifier: (val) => {
        return val.toLowerCase()
    }
})

// Value will be maximilian

Advanced example

Action Workflow:

uses: username/action
with:
    github_token: TOKEN
    repository: username/reponame
    labels: |
        merged
        ready

Action code:

const { getInput } = require('action-input-parser')

const config = {
    githubToken: getInput({
        key: 'github_token',
        required: true
    }),
    repository: getInput({
        key: 'repository',
        modifier: (val) => {
            const [user, repo] = val.split('/')
            return { user, repo }
        }
    }),
    labels: getInput({
        key: 'labels',
        type: 'array'
    }),
    dryRun: getInput({
        key: 'dry_run',
        type: 'boolean',
        default: false
    }),
}

// parsed config:
{
    githubToken: 'TOKEN',
    repository: {
        name: 'username',
        repo: 'reponame'
    },
    labels: [ 'merged', 'ready' ],
    dryRun: false
}

💻 Development

Issues and PRs are very welcome!

The actual source code of this library is in the src folder.

  • run yarn lint or npm run lint to run eslint.
  • run yarn build or npm run build to produce a compiled version in the lib folder.

❔ About

This project was developed by me (@betahuhn) in my free time. If you want to support me:

Donate via PayPal

ko-fi

📄 License

Copyright 2021 Maximilian Schiller

This project is licensed under the MIT License - see the LICENSE file for details.