chore(deps): bump everalgo-user-memory from 0.3.1 to 0.3.2 in the python-deps group across 1 directory #249
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: Commit lint | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: commit-lint-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| title: | |
| name: pull request title | |
| if: github.event_name == 'pull_request' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Validate Conventional Commit PR title | |
| env: | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| run: make check-pr-title | |
| messages: | |
| name: commit messages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Validate Conventional Commit subjects | |
| env: | |
| GITHUB_EVENT_BEFORE: ${{ github.event.before }} | |
| GITHUB_PR_BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
| run: make check-commits |