-
Notifications
You must be signed in to change notification settings - Fork 0
TA-4767: Fix API token and team URL selection on commands #296
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
Merged
Conversation
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
… than celonis_url and celonis_api_token
promeris
reviewed
Dec 17, 2025
|
LaberionAjvazi
approved these changes
Dec 17, 2025
ZgjimHaziri
approved these changes
Dec 18, 2025
jetakasabaqi
approved these changes
Dec 18, 2025
promeris
approved these changes
Dec 18, 2025
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.



Description
Changed the logic for which API token and which team should be used on the commands. The priority has changed as follows:
1. If the profile is sent, it has precedence over any environment variable.
2. If the profile isn't sent, then the
API_TOKENandTEAM_URLenvironment variables are used.3. If
API_TOKENandTEAM_URLenvironment variables aren't set, thenCELONIS_API_TOKENandCELONIS_URLare used.- The difference here is that if the
CELONIS_URLdoesn't start withhttps://orhttp://, then we addhttps://to the beginning of it.The reasoning for this is that the
CELONIS_API_TOKENenvironment variable seems to not be an admin token and not all the CLI commands work if we give more priority toCELONIS_API_TOKENandCELONIS_URLenv vars.As for the
API_TOKENandTEAM_URL, they're used on ML Workbenches and the existing scripts could break if we give more precedence toCELONIS_API_TOKENandCELONIS_URL, due to the fact thatCELONIS_API_TOKENis not an admin token.Relevant links
Checklist