Skip to content

Commit

Permalink
ci: add action to update the browserslist database on a monthly basis
Browse files Browse the repository at this point in the history
  • Loading branch information
scurker committed Apr 16, 2024
1 parent d9086ae commit f471fc2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update-browserslist-db.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update Browserslist Database

on:
# TODO: TESTING REMOVE THIS BEFORE MERGING
push:
branches:
- browserlist-update-db-action
schedule:
# run on the 1st of every month
- cron: '15 3 1 * *'
workflow_call:

jobs:

- 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 f471fc2

Please sign in to comment.