Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEVPROD-13995: document project variable limitations #8612

Merged
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
12 changes: 12 additions & 0 deletions docs/Project-Configuration/Project-and-Distro-Settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,18 @@ Options:
- Checking **admin only** ensures that the variable can only be used
by admins and mainline commits.

Project variables have some limitations:

* Project variable names can consist of alphanumeric characters, dashes (`-`),
underscores (`_`), and periods (`.`). Other special characters are not
allowed.
* Project variable names cannot contain the suffix `.gz`.
* Project variable names must be unique.
* Project variable names and values cannot be an empty string.
* A project variable's value cannot exceed 8 KB in length. If you need to store
a value longer than 8 KB, you can store it in multiple variables and
concatenate them together in a script when your task runs.

### Aliases

Aliases can be used for patch testing, merge queue testing, GitHub PRs,
Expand Down
Loading