fix: update Databricks datasource description to be less than 240 characters #417
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: PR Validation | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate Artifact | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
| with: | |
| ref: ${{ github.sha }} | |
| - name: Setup workspace | |
| uses: "./.github/actions/bootstrap" | |
| - name: Validate PR Artifact | |
| uses: "./.github/actions/build-validate-artifact" | |
| validate-quickstart-ids: | |
| name: Validate Quickstart IDs | |
| runs-on: ubuntu-latest | |
| if: ${{ github.base_ref == 'main' && github.head_ref == 'release' }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
| with: | |
| ref: ${{ github.sha }} | |
| - name: Setup workspace | |
| uses: "./.github/actions/bootstrap" | |
| - name: Validate Quickstart IDs | |
| run: | | |
| cd utils && npm run validate-quickstart-ids |