mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
19 lines
481 B
YAML
19 lines
481 B
YAML
name: Update Browserslist
|
|
on:
|
|
schedule:
|
|
- cron: '0 7 * * 1'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-browser-list:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: npx browserslist@latest --update-db
|
|
- name: Commit changes
|
|
uses: EndBug/add-and-commit@v9
|
|
with:
|
|
author_name: ${{ github.actor }}
|
|
author_email: ${{ github.actor }}@users.noreply.github.com
|
|
message: 'chore: update browsers list'
|