TemplatableBool represents a boolean frontmatter field that also accepts GitHub Actions expression strings (e.g. "${{ inputs.enabled }}"). The underlying value is always stored as a string: boolean literals as "true" or "false", expressions verbatim.
| 141 | // underlying value is always stored as a string: boolean literals as "true" or |
| 142 | // "false", expressions verbatim. |
| 143 | type TemplatableBool string |
| 144 | |
| 145 | // UnmarshalJSON allows TemplatableBool to accept both JSON booleans and JSON |
| 146 | // strings that are GitHub Actions expressions. |
no outgoing calls
no test coverage detected