mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
[](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [peter-evans/create-pull-request](https://togithub.com/peter-evans/create-pull-request) | action | major | `v5` -> `v6` | --- ### Release Notes <details> <summary>peter-evans/create-pull-request (peter-evans/create-pull-request)</summary> ### [`v6`](https://togithub.com/peter-evans/create-pull-request/compare/v5...v6) [Compare Source](https://togithub.com/peter-evans/create-pull-request/compare/v5...v6) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 8pm on monday" in timezone America/Chicago, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/compiler-explorer/compiler-explorer). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMDAuMCIsInVwZGF0ZWRJblZlciI6IjM3LjIwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
28 lines
943 B
YAML
28 lines
943 B
YAML
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@v6
|
|
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.
|