FEAT: update uv.lock in requirements workflow
#315
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 linting | |
| on: | |
| workflow_call: | |
| pull_request: | |
| types: | |
| - edited | |
| - labeled | |
| - opened | |
| - reopened | |
| - synchronize | |
| - unlabeled | |
| jobs: | |
| check-labels: | |
| if: github.event.pull_request.state == 'open' | |
| name: Check labels | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: docker://agilepathway/pull-request-label-checker:latest # cspell:ignore agilepathway | |
| with: | |
| any_of: >- | |
| 🐛 Bug,✨ Feature,⚙️ Enhancement,⚠️ Interface,❗ Behavior,📝 Docs,🔨 Maintenance,🖱️ DX | |
| none_of: Epic,💫 Good first issue | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} | |
| check-title: | |
| if: github.event.pull_request.state == 'open' | |
| name: Check title | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: npm install @compwa/commitlint-config | |
| - name: Create commitlint config | |
| run: | | |
| echo "module.exports = {extends: ['@compwa/commitlint-config']}" > commitlint.config.js | |
| - uses: JulienKode/[email protected] # cspell:ignore kode | |
| - if: failure() | |
| run: > | |
| echo "::error::Please use a conventional commit message for the pull request title. See https://compwa.github.io/develop.html#commit-conventions for examples." |