Skip to content

Update browsers list #5

Update browsers list

Update browsers list #5

Workflow file for this run

name: Update browsers list
on:
workflow_dispatch: # To allow manual runs
schedule:
- cron: '0 0 1 * *' # Monthly
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Update browerslist
run: |
git config user.name 'Compiler Explorer Bot'
git config user.email 'mattgodbolt@users.noreply.github.com'
make prereqs
npm run update-browserslist
git commit -am "Automated checkin - update browsers list"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
title: '[bot] Update browsers list'
body: |
Automatic run of `npm run-update-browerslist` which needs to
be done periodically to keep in-date.
See [here](https://github.com/browserslist/browserslist#browsers-data-updating) for more details.