Skip to content

frabert/replace-string-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

replace-string GitHub Action

Replaces strings with regular expressions.

Inputs

pattern

Required Regular expression to match.

string

Required Input string.

replace-with

Required String to use for replacement.

flags

Flags to use when matching. Please refer to MDN for more information.

Outputs

replaced

The replaced string.

Example usage

uses: frabert/replace-string-action@v2
with:
  pattern: 'Hello, (\w+)!'
  string: 'Hello, world!'
  replace-with: 'I greet you, $1!'