fix(deps): update dependency lucide-react to ^0.577.0 #20246
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 Title Check | |
| # Cancel previous runs for the same PR | |
| concurrency: | |
| group: pr-title-check-${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| jobs: | |
| check-pr-title: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v6 | |
| - name: Validate PR title | |
| id: validate | |
| run: | | |
| PR_TITLE=$(jq -r .pull_request.title "$GITHUB_EVENT_PATH") | |
| echo "PR Title: $PR_TITLE" | |
| if [[ ! "$PR_TITLE" =~ ^(feat|fix|docs|style|refactor|test|chore)(\([a-zA-Z0-9-]+\))?:\ .+ ]]; then | |
| echo "PR title does not match the required pattern." | |
| exit 1 | |
| fi | |
| - name: Set status | |
| if: failure() | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh pr comment ${{ github.event.pull_request.number }} --body "❌ PR title does not match the required pattern. Please use one of these formats: | |
| - 'type: description' (e.g., 'feat: add new feature') | |
| - 'type(scope): description' (e.g., 'chore(core): update dependencies')" |