Skip to content

Commit

Permalink
πŸ‘· Deduplicate dependencies for Dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
mingjunlu committed Feb 6, 2024
1 parent 2fd857b commit 28fe9dc
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/dependabot-dedupe.yaml
@@ -0,0 +1,38 @@
name: Deduplicate Dependencies for Dependabot PRs
on:
push:
branches:
- 'dependabot/npm_and_yarn/*'
paths:
- 'package.json'
permissions:
contents: write
jobs:
dedupe:
name: Deduplicate dependencies
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Deduplicate dependencies
run: pnpm dedupe --ignore-scripts
- name: Set up Git
run: |
git config user.name "github-actions[bot]"
git config user.email "49699333+dependabot[bot]@users.noreply.github.com"
- name: Commit and push changes
run: |
git add pnpm-lock.yaml
git commit -m "βž– Deduplicate dependencies [dependabot skip]" || echo "No changes to commit"
git push origin ${{ github.ref_name }}

0 comments on commit 28fe9dc

Please sign in to comment.