Skip to content

Commit

Permalink
Create fix_peer_dependencies.yml (#88)
Browse files Browse the repository at this point in the history
* Create fix_peer_dependencies.yml

* Update fix_peer_dependencies.yml

* Update fix_peer_dependencies.yml

* Fix conflicting peer dependencies (#89)

Co-authored-by: GitHub Action <[email protected]>

* Update fix_peer_dependencies.yml (#90)

* Update fix_peer_dependencies.yml (#91)

* Update fix_peer_dependencies.yml

* Update fix_peer_dependencies.yml (#92)

* Update fix_peer_dependencies.yml

* Update fix_peer_dependencies.yml (#93)

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: GitHub Action <[email protected]>
  • Loading branch information
3 people authored Dec 4, 2023
1 parent 12bd68d commit 87b9eca
Show file tree
Hide file tree
Showing 2 changed files with 468 additions and 1,577 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/fix_peer_dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Fix Peer Dependencies

on:
push:
branches:
- '*'

jobs:
fix-peer-dependencies:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install dependencies
run: npm install

- name: Fix peer dependencies
run: npm update

- name: Git setup
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
- name: Commit changes
run: |
git add .
git commit -m "Fix conflicting peer dependencies" || true
git pull || true
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: "Fix conflicting peer dependencies"
title: "Fix conflicting peer dependencies"
body: "This pull request fixes conflicting peer dependencies."
branch-suffix: timestamp
Loading

0 comments on commit 87b9eca

Please sign in to comment.