Fix config schema for istio and region #208
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Config Change Detection | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'config/*' | |
- .github/workflows/config-change-detection.yml | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: change-detection | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 1 | |
- name: 'Fail if there is uncommited change' | |
run: | | |
cd config/ | |
make detect-change |