fix: Complete data source form support for all SDK-configurable parameters #17185
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: lint-pr | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate-title: | |
| if: | |
| github.event.pull_request.base.repo.full_name == 'feast-dev/feast' | |
| name: Validate PR title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| sparse-checkout: .commitlintrc.yaml | |
| sparse-checkout-cone-mode: false | |
| - name: Lint PR title with commitlint | |
| env: | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| run: | | |
| npm install --no-save @commitlint/cli @commitlint/config-conventional | |
| echo "$PR_TITLE" | npx commitlint |