Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
scurker committed Apr 16, 2024
1 parent a4d509f commit b7db1a0
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/update-browserslist-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ on:
workflow_call:

jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Browserlist Database
run: |
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 commit -m 'chore: update browserlist database'
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6

update-browserlist-db:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update Browserlist Database
run: |
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 commit -m 'chore: update browserlist database'
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6

0 comments on commit b7db1a0

Please sign in to comment.