2021-12-15 21:03:35 +01:00
|
|
|
name: Update Browserslist
|
|
|
|
on:
|
2021-12-20 20:10:34 +01:00
|
|
|
schedule:
|
|
|
|
- cron: '0 7 * * 1'
|
2021-12-15 21:03:35 +01:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-07 19:18:05 +01:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-15 21:03:35 +01:00
|
|
|
- run: npx browserslist@latest --update-db
|
|
|
|
- name: Commit changes
|
2022-03-14 07:06:49 +00:00
|
|
|
uses: EndBug/add-and-commit@v9
|
2021-12-15 21:03:35 +01:00
|
|
|
with:
|
|
|
|
author_name: ${{ github.actor }}
|
|
|
|
author_email: ${{ github.actor }}@users.noreply.github.com
|
2022-01-10 09:58:51 +01:00
|
|
|
message: 'chore: update browsers list'
|