Skip to content

Bump lucide-react from 0.312.0 to 0.371.0 #610

Bump lucide-react from 0.312.0 to 0.371.0

Bump lucide-react from 0.312.0 to 0.371.0 #610

Workflow file for this run

name: Dependabot auto-merge
on: pull_request
permissions:
pull-requests: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v3
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Update lock file
run: bun install
- name: Commit report
run: |
git config --global user.name 'dependabot[bot]'
git config --global user.email '[email protected]'
git commit -a --amend --no-edit
git push origin HEAD:"$GITHUB_REF_NAME" --force
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}