You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
--max-wait-minutes "$((${{ parameters.timeoutInMinutes }} - 5))" # Set the tool's timeout slightly lower than the Azure DevOps job timeout to allow it to exit gracefully.
192
201
--stage-name '$(System.StageName)'
202
+
--stage-attempt '$(System.StageAttempt)'
193
203
)
194
204
195
205
organization='${{ parameters.organization }}'
196
206
repository='${{ parameters.repository }}'
197
207
198
208
# Fall back to Azure DevOps-provided environment variables when the caller did not
199
209
# supply organization / repository explicitly. BUILD_REPOSITORY_NAME is typically
200
-
# 'owner/repo' for GitHub-backed builds.
210
+
# 'owner/repo' for GitHub-backed builds and 'owner-repo' for internal builds.
201
211
if [ -z "$organization" ] || [ -z "$repository" ]; then
202
212
buildRepoName="${BUILD_REPOSITORY_NAME:-}"
203
213
if [ -n "$buildRepoName" ] && [[ "$buildRepoName" == */* ]]; then
0 commit comments