From 2a2e0c0e3596d0e3d455010fa3b8e108e399e8ee Mon Sep 17 00:00:00 2001 From: t-kikuc Date: Sat, 28 Dec 2024 00:48:04 +0900 Subject: [PATCH] Add case of `pipectl sync` Signed-off-by: t-kikuc --- .../managing-application/customizing-deployment/script-run.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/en/docs-dev/user-guide/managing-application/customizing-deployment/script-run.md b/docs/content/en/docs-dev/user-guide/managing-application/customizing-deployment/script-run.md index fbfdd1cc68..69f0e20485 100644 --- a/docs/content/en/docs-dev/user-guide/managing-application/customizing-deployment/script-run.md +++ b/docs/content/en/docs-dev/user-guide/managing-application/customizing-deployment/script-run.md @@ -108,7 +108,7 @@ You can use the envrionment values related to the deployment. |SR_APPLICATION_NAME| The application name | example | |SR_TRIGGERED_AT| The timestamp when the deployment is triggered | 1719571113 | |SR_TRIGGERED_COMMIT_HASH| The commit hash that triggered the deployment | 2bf969a3dad043aaf8ae6419943255e49377da0d | -|SR_TRIGGERED_COMMANDER| The ID of user who triggered the deployment. This will be empty if the deployment was triggered by your piped. | userid | +|SR_TRIGGERED_COMMANDER| The ID of user who triggered the deployment via UI. This is APIKey's ID if it was triggered via `pipectl sync`. This is empty if it was triggered by your piped. | userid | |SR_REPOSITORY_URL| The repository url configured in the piped config | git@github.com:org/repo.git, https://github.com/org/repo | |SR_SUMMARY| The summary of the deployment | Sync with the specified pipeline because piped received a command from user via web console or pipectl| |SR_CONTEXT_RAW| The json encoded string of above values | {"deploymentID":"877625fc-196a-40f9-b6a9-99decd5494a0","applicationID":"8d7609e0-9ff6-4dc7-a5ac-39660768606a","applicationName":"example","triggeredAt":1719571113,"triggeredCommitHash":"2bf969a3dad043aaf8ae6419943255e49377da0d","repositoryURL":"git@github.com:org/repo.git","labels":{"env":"example","team":"product"}} |