[Fix] databricks_external_location: send enable_file_events = false on create when user asks for it
#6125
Workflow file for this run
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: Validate openapi sha | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, edited] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 | |
| - name: Validate SHA | |
| run: | | |
| Version=$(go list -m -json github.com/databricks/databricks-sdk-go | jq -r ".Version") | |
| OPENAPI_SHA_GO_SDK=$(curl https://raw.githubusercontent.com/databricks/databricks-sdk-go/$Version/.codegen/_openapi_sha) | |
| OPENAPI_SHA=$(cat .codegen/_openapi_sha) | |
| if [ "$OPENAPI_SHA_GO_SDK" != "$OPENAPI_SHA" ]; then | |
| echo "OpenAPI SHA mismatch" | |
| exit 1 | |
| else | |
| echo "OpenAPI SHA match" | |
| fi |