Skip to content

fix(deps): update dependency lucide-react to ^1.7.0 #25

fix(deps): update dependency lucide-react to ^1.7.0

fix(deps): update dependency lucide-react to ^1.7.0 #25

Workflow file for this run

name: PR Triage
on:
pull_request_target:
types:
- opened
- edited
- reopened
- synchronize
jobs:
title:
name: Title Validation
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Project
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 24
cache: yarn
- name: Install Dependencies
run: yarn --immutable
- name: Run Validation
run: echo "$PR_TITLE" | yarn commitlint
env:
PR_TITLE: ${{ github.event.pull_request.title }}
dependabot:
name: Dependabot Auto-merge
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository_owner == 'Kings-World'
permissions:
contents: write
pull-requests: write
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@ffa630c65fa7e0ecfa0625b5ceda64399aea1b36 # v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for Dependabot PRs
if: steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}