Skip to content

Commit

Permalink
Fix condition for test generation in prepare-pipelines (#18537)
Browse files Browse the repository at this point in the history
Co-authored-by: Wes Haggard <Wes.Haggard@microsoft.com>
  • Loading branch information
azure-sdk and weshaggard committed Jan 11, 2021
1 parent 1a590c2 commit 0263490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eng/common/pipelines/templates/steps/prepare-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ steps:
--debug
${{parameters.TestsConventionOptions}}
displayName: Create Live Test pipelines for public repository
condition: ne(variables['TestsConventionOptions'],'')
condition: ne(${{parameters.TestsConventionOptions}},'')
env:
PATVAR: $(azuresdk-azure-sdk-devops-pipeline-generation-pat)
Expand Down Expand Up @@ -132,6 +132,6 @@ steps:
--no-schedule
${{parameters.TestsConventionOptions}}
displayName: Create Live Test pipelines for private repository
condition: ne(variables['TestsConventionOptions'],'')
condition: ne(${{parameters.TestsConventionOptions}},'')
env:
PATVAR: $(azuresdk-azure-sdk-devops-pipeline-generation-pat)

0 comments on commit 0263490

Please sign in to comment.