fix: filtered keys for metada creation #15
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 format | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - reopened | |
| jobs: | |
| pr-title: | |
| name: Check conventional commit PR title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Pixi | |
| uses: prefix-dev/setup-pixi@v0.8.10 | |
| with: | |
| pixi-version: v0.54.1 | |
| cache: true | |
| manifest-path: pyproject.toml | |
| - name: Verify conventional commit conventions on PR title | |
| run: echo "${{ github.event.pull_request.title }}" | pixi run commitlint |