_       ____   _____   ___    ___    _   _           ____     ___     ____   ____  
/ \     / ___| |_   _| |_ _|  / _ \  | \ | |         |  _ \   / _ \   / ___| / ___|

/ _ \ | | | | | | | | | | | \| | _ | | | | | | | | | | _ \ / ___ \ | | | | | | | || | | |\ | || | || | | |_| | | | ___) | // _\ _| || || ___/ || _| |_/ __/ __| |____/

Description

A simple GitHub Action for running a shell command in a loop against a list of items

Inputs

| name | description | required | default | | --- | --- | --- | --- | | items |

List of items defined in a comma and/or space-separated string, or custom delimiters

| true | "" | | command |

Shell command to be executed in a loop, each run can access an item from the list via $ITEM

| true | "" | | delimiters |

Items string delimiters, separated by pipe character, default: ", |,| " (comma followed by space, comma, space)

| false | , | |, |

Runs

This action is a composite action.

Usage

```yaml - uses: PROJECT@VERSION with: items: # List of items defined in a comma and/or space-separated string, # or custom delimiters # # Required: true # Default: ""

command:
# Shell command to be executed in a loop,
# each run can access an item from the list via $ITEM
#
# Required: true
# Default: ""

delimiters:
# Items string delimiters, separated by pipe character,
# default: ", |,| " (comma followed by space, comma, space)
#
# Required: false
# Default: , | |,

```