chore(deps,cargo): update datafusion requirement from 34.0.0 to 36.0.0 #31
Workflow file for this run
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: Pull Request | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
jobs: | |
conventional-commits: | |
name: Conventional Commits | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm install @commitlint/config-conventional | |
- run: npx commitlint <<< $CONVENTIONAL_COMMIT | |
env: | |
CONVENTIONAL_COMMIT: | | |
${{ github.event.pull_request.title }} | |
${{ github.event.pull_request.body }} | |
- if: failure() | |
run: | |
echo "Datafusion-federation follows the [Conventional Commits specification](https://www.conventionalcommits.org/en/v1.0.0/) for release automation. | |
The PR title and body are used as the merge commit message. | |
Please update your PR title to match the specification." >> $GITHUB_STEP_SUMMARY |