Warn when typst version inputs are ignored - #67
Merged
Conversation
When `typst-versions-*` is provided, `typst-version` and `executable-name` are ignored today without any signal. This change makes that override explicit so users can see when their single-version inputs are being bypassed. - **Input conflict warning** - Emit a `core.warning` when `typst-versions-*` is set alongside non-default `typst-version` / `executable-name` inputs. - Keep the message consistent with existing warning style in the action. - **Multiple `typst-versions-*` inputs warning** - Emit a `core.warning` when more than one `typst-versions-*` input is set. - Clearly state which `typst-versions-*` input is used and which ones are ignored. - **Preserve existing behavior** - Multi-version installation still takes precedence. - Default single-version inputs remain unchanged when no `typst-versions-*` input is present. ```yaml with: typst-versions-file: config.json typst-version: v0.14 executable-name: typst-latest ``` With this configuration, the action now warns that `typst-version` and `executable-name` are ignored.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When
typst-versions-*is provided,typst-versionandexecutable-nameare ignored today without any signal. This change makes that override explicit so users can see when their single-version inputs are being bypassed.Input conflict warning
core.warningwhentypst-versions-*is set alongside non-defaulttypst-version/executable-nameinputs.Multiple
typst-versions-*inputs warningcore.warningwhen more than onetypst-versions-*input is set.typst-versions-*input is used and which ones are ignored.Preserve existing behavior
typst-versions-*input is present.With this configuration, the action now warns that
typst-versionandexecutable-nameare ignored.