Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add check_title_template to action inputs #546

Merged
merged 4 commits into from
Apr 27, 2022
Merged

fix: add check_title_template to action inputs #546

merged 4 commits into from
Apr 27, 2022

Commits on Apr 25, 2022

  1. fix: add check_title_template to action inputs

    `check_title_template` is supported internally, but not exposed via the
    action interface. This commit exposes it and adds an example usage to
    the `build` job.
    
    Relates to:
    7a62880
    MIJOTHY committed Apr 25, 2022
    Configuration menu
    Copy the full SHA
    d5aecc8 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2022

  1. Configuration menu
    Copy the full SHA
    0cbde44 View commit details
    Browse the repository at this point in the history
  2. refactor: change template var delimiters

    The current template var format `${{...}}` clashes with that used by
    GitHub Actions, which makes usage unwieldy. Currently users need to
    escape the `${{FILE_NAME}}` template in order to avoid it being
    interpreted as a GHA template, so usage looks like:
    ```yaml
    check_title_template: ${{ '${{FILE_NAME}}' }}
    ```
    
    This commit changes the template format to `{{..}}`, so usage looks
    like:
    ```yaml
    check_title_template: '{{FILE_NAME}}'
    ```
    
    This is a non-breaking change, as currently the input which makes use of
    template vars isn't exposed via the action.yml file.
    MIJOTHY committed Apr 27, 2022
    Configuration menu
    Copy the full SHA
    22870cf View commit details
    Browse the repository at this point in the history
  3. fix action arg in build.yml

    MIJOTHY committed Apr 27, 2022
    Configuration menu
    Copy the full SHA
    888386a View commit details
    Browse the repository at this point in the history