Skip to content

Commit

Permalink
Make ServiceName optional for verify-changelog
Browse files Browse the repository at this point in the history
In cases like go where we don't pass a service name having this default to "not-specified" breaks things so we should allow for ServiceName and/or ServiceDirectory to be empty.
  • Loading branch information
weshaggard authored and azure-sdk committed Sep 15, 2021
1 parent 1efff7f commit 01bd832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eng/common/pipelines/templates/steps/verify-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ parameters:
default: 'not-specified'
- name: ServiceName
type: string
default: 'not-specified'
default: ''
- name: ServiceDirectory
type: string
default: ''
Expand All @@ -23,4 +23,4 @@ steps:
pwsh: true
workingDirectory: $(Pipeline.Workspace)
displayName: Verify ChangeLogEntry for ${{ parameters.PackageName }}
continueOnError: false
continueOnError: false

0 comments on commit 01bd832

Please sign in to comment.