Skip to content

bluwy/substitute-string-action

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

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

28 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

substitute-string-action

A GitHub Action to easily substitute or replace strings from a text or a file using YAML!

Usage

The simplest usage can be configured as below:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: bluwy/substitute-string-action@v3
        id: sub
        with:
          _input-text: 'Hello World!'
          World: GitHub
      - run: echo ${{ steps.sub.outputs.result }} # Prints 'Hello GitHub!'

See the examples below for more use cases.

Parameters

_input-text

Optional The plain input text.

_input-file

Optional The file to read as input.

You must specify either _input-text or _input-file, otherwise it will throw an error. If both are specified, _input-text will take precendence.

_output-file

Optional The file to write after substitution.

_format-key

Optional Formats a key before replacing. Use the word key to refer to the substitute key. It's easier to understand with examples, like below:

For example:

  1. Format key with %% prefix and suffix.
  • _input-text: 'Hello human, %%human%%'
  • _format-key: '%%key%%'
  • human: 'Bob'
  • Result: 'Hello human, Bob'
  1. No key format.
  • _input-text: 'Hello human, human'
  • human: 'Bob'
  • Result: 'Hello Bob, Bob'

[keys]

Optional The keys to be substituted with its value.

Note: The keys are case-insensitive, meaning foo can be matched to Foo, FOO, etc... This is a caveat of GitHub Action's way of handling inputs.

Extra note: Since June 2020, GitHub Actions started validating input parameters, and because [keys] is dynamic, it will emit a Unexpected input(s) warning. This will not affect the workflow pipeline as it is only a warning. There is currently no way of disabling it but a workaround can be used if needed. This behavior is being tracked in #1.

Examples

Send tweet via a template with ethomson/send-tweet-action:

.github/tweet_template.txt:

๐ŸŽ‰๏ธ My-awesome-project %%version%% has been released! ๐ŸŽ‰๏ธ

View the release at https://example.com

release.yml

name: Send a Tweet
on:
  release:
    types: [published]
jobs:
  tweet:
    runs-on: ubuntu-latest
    steps:
      - uses: bluwy/substitute-string-action@v1
        id: sub
        with:
          _input-file: './.github/tweet_template.txt'
          _format-key: '%%key%%'
          version: ${{ github.ref }}
      - uses: ethomson/send-tweet-action@v1
        with:
          status: ${{ steps.sub.outputs.result }}
          consumer-key: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
          consumer-secret: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
          access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }}
          access-token-secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}

FAQ

How is this different than similar existing actions?

There are a few actions out there that allows regex substitutions. While this feature is not supported, this action focuses on providing multiple substitutions at once, which most don't support.

The closest action I can find to have this feature is Replace Action, but the way it handles multiple substitutions is by defining a comma-separated key-value pairs, e.g. foo=bar,$FOO=Bar_Value.

This action uses a different approach. By specifying the key and values as parameters of this action, we can take advantage of YAML's styling, extract all the custom parameters and use them for substitutions.

License

MIT

About

๐Ÿš€๏ธ Easily substitute or replace strings in GitHub Actions using YAML

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published