Skip to content

[FIX:] azurerm_cdn_frontdoor_custom_domain - allow wildcard host_name with ManagedCertificate #11163

[FIX:] azurerm_cdn_frontdoor_custom_domain - allow wildcard host_name with ManagedCertificate

[FIX:] azurerm_cdn_frontdoor_custom_domain - allow wildcard host_name with ManagedCertificate #11163

---
name: Breaking Schema Changes
permissions:
contents: read
pull-requests: read
on:
pull_request:
types: ['opened', 'synchronize']
paths:
- '.github/workflows/breaking-change-detection.yaml'
- 'vendor/**'
- 'internal/**.go'
concurrency:
group: 'breakingChange-${{ github.head_ref }}'
cancel-in-progress: true
jobs:
detect:
runs-on: custom-linux-small
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version-file: ./.go-version
- run: bash ./scripts/run-breaking-change-detection.sh
- name: Guidance on failure
if: failure()
run: |
echo "::error::Breaking Schema Changes detected."
echo ""
echo "Your changes contain breaking schema changes (e.g. removing or renaming"
echo "a property, changing a property type, or making an optional property required)."
echo "Breaking changes must be gated behind the appropriate feature flag (e.g. features.FivePointOh())."
echo "Please review the breaking changes guide: contributing/topics/guide-breaking-changes.md"