Skip to content

Instantly share code, notes, and snippets.

Avatar

David Myrddraal

  • London, UK
View GitHub Profile
@Myrddraal
Myrddraal / Test-ChangesMadeInPath.ps1
Last active April 6, 2022 14:16
Skip infrastructure deployments if there are no changes to deploy (Azure Pipelines)
View Test-ChangesMadeInPath.ps1
[CmdletBinding()]
param (
$authorisation,
$pathFilter,
$collectionUri,
$project,
$buildId
)
$changesUrl = "$collectionUri/$project/_apis/build/builds/$buildId/changes?api-version=6.0"