generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
6 changed files
with
17 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters