Skip to content

Instantly share code, notes, and snippets.

View DavidAtImpactCubed's full-sized avatar

David DavidAtImpactCubed

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