fix(deps): update dependency lucide-react to v1 #5576
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: Check Deployment | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| passci: | |
| description: 'Pass CI' | |
| required: true | |
| type: boolean | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled] | |
| concurrency: | |
| group: check-deploy-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| check-branches: | |
| if: | |
| startsWith(github.head_ref, 'renovate/') || contains(github.head_ref, | |
| 'no-deploy') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fail if no passci inputs or pass-ci label | |
| if: | |
| ${{ !inputs.passci && | |
| !contains(github.event.pull_request.labels.*.name, 'pass-ci') }} | |
| run: exit 1 |