Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@ We have introduced a mechanism to populate the required rules and config when us
`@semantic-release/commit-analyzer` and `@semantic-release/release-notes-generator` plugins and add prefixed rules and
preset config if `"preset": "conventionalcommits"` is found but not `presetConfig` or `releaseRules` objects. To enable
this feature, set `"default-preset-info": true` in the action parameters.

### **Why alt-input parameter?**

More information on issue [@actions/toolkit#2034](https://github.com/actions/toolkit/issues/2034). If you want to use
the action outside GitHub (like in GitLab for example) your input parameters cannot include a dash/hyphen on their
separation. GitHub Action accepts the input parameters with them. But you cannot pass them in GitLab. That is why it is
required to remove the dash/hyphen and rely on the toolkit core to find an alternative env with `INPUT_` prefix.
Loading