Change the maximum length of slugified values. The default is 63 characters (the DNS label length limit).
steps:
- name: Inject enhanced GitHub environment variables
uses: rlespinasse/github-slug-action@v5
with:
slug-maxlength: 80Set slug-maxlength to "nolimit" to disable truncation entirely:
steps:
- name: Inject enhanced GitHub environment variables
uses: rlespinasse/github-slug-action@v5
with:
slug-maxlength: nolimitWarning
The slug-maxlength input must not be empty. If left empty, the action will fail during preflight validation.
- Inputs reference for the full specification
- Why 63 characters? for the rationale behind the default