Add region_filter_configs and is_global_location_enabled to v2 GCP API #12040
This file contains hidden or 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: "Ensure labels" | |
| permissions: | |
| pull-requests: write | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| types: | |
| - labeled | |
| - unlabeled | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| jobs: | |
| changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check changelog labels | |
| if: github.event.pull_request.draft == false && false == contains(join(github.event.pull_request.labels.*.name, ','), 'changelog/') | |
| run: |- | |
| echo "::error Add 'changelog/*' label"; | |
| exit 1; | |
| - name: OK | |
| run: echo "Thank you!" |