Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ parameters:
steps:
- ${{ if eq(variables['Build.Reason'],'PullRequest') }}:
- pwsh: |
$apiChangeDetectRequestUrl = "https://apiview.org/api/PullRequests/CreateAPIRevisionIfAPIHasChanges"
$apiChangeDetectRequestUrl = "https://apiview.dev/api/PullRequests/CreateAPIRevisionIfAPIHasChanges"
echo "##vso[task.setvariable variable=ApiChangeDetectRequestUrl]$apiChangeDetectRequestUrl"
displayName: "Set API change detect request URL"
condition: and(succeededOrFailed(), ${{ parameters.Condition}}, eq(variables['ApiChangeDetectRequestUrl'], ''))
Expand Down
2 changes: 1 addition & 1 deletion eng/common/scripts/Create-APIReview.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Param (
[string] $BuildId,
[string] $PackageName = "",
[string] $ConfigFileDir = "",
[string] $APIViewUri = "https://apiview.org/autoreview",
[string] $APIViewUri = "https://apiview.dev/autoreview",
[string] $ArtifactName = "packages",
[bool] $MarkPackageAsShipped = $false,
[Parameter(Mandatory=$False)]
Expand Down
4 changes: 2 additions & 2 deletions eng/common/scripts/Helpers/ApiView-Helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function Set-ApiViewCommentForRelatedIssues {
param (
[Parameter(Mandatory = $true)]
[string]$HeadCommitish,
[string]$APIViewHost = "https://apiview.org",
[string]$APIViewHost = "https://apiview.dev",
[ValidateNotNullOrEmpty()]
[Parameter(Mandatory = $true)]
$AuthToken
Expand Down Expand Up @@ -241,7 +241,7 @@ function Set-ApiViewCommentForPR {
# Helper function used to create API review requests for Spec generation SDKs pipelines
function Create-API-Review {
param (
[string]$apiviewEndpoint = "https://apiview.org/api/PullRequests/CreateAPIRevisionIfAPIHasChanges",
[string]$apiviewEndpoint = "https://apiview.dev/api/PullRequests/CreateAPIRevisionIfAPIHasChanges",
[string]$specGenSDKArtifactPath,
[string]$apiviewArtifactName,
[string]$buildId,
Expand Down
2 changes: 1 addition & 1 deletion eng/common/scripts/Validate-All-Packages.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Param (
[string]$ConfigFileDir,
[string]$BuildDefinition,
[string]$PipelineUrl,
[string]$APIViewUri = "https://apiview.org/AutoReview/GetReviewStatus",
[string]$APIViewUri = "https://apiview.dev/AutoReview/GetReviewStatus",
[bool] $IsReleaseBuild = $false,
[Parameter(Mandatory=$False)]
[array] $PackageInfoFiles
Expand Down
Loading