Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
scurker committed Apr 16, 2024
1 parent bbc9789 commit 22ba5f1
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/update-browserslist-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,18 @@ jobs:
git config user.name github-actions
git config user.email [email protected]
npx update-browserslist-db@latest
npm exec --prefix packages/react update-browserslist-db@latest
npm exec --prefix packages/styles update-browserslist-db@latest
git add .
git commit -m 'chore: update browserlist database'
cd packages/react && npx update-browserslist-db@latest
cd packages/styles && npx update-browserslist-db@latest
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
uses: peter-evans/create-pull-request@v6
with:
add-paths: |
yarn.lock
packages/*/yarn.lock
commit-message: 'chore: update browserlist database'
branch: update-browserlist-database
base: develop
title: 'chore: update browserlist database'
body: |
This patch updates any outdated browserlist databases.
This PR was opened automatically by a robot :robot: :tada:

0 comments on commit 22ba5f1

Please sign in to comment.