caniuse #244
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: caniuse | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
caniuse: | |
if: github.repository == 'DMOJ/online-judge' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download Can I use... data | |
run: | | |
curl -s https://raw.githubusercontent.com/Fyrd/caniuse/master/data.json | python3 -m json.tool > resources/caniuse.json | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
token: ${{ secrets.REPO_SCOPED_TOKEN }} | |
author: dmoj-build <[email protected]> | |
committer: dmoj-build <[email protected]> | |
title: Import latest Can I use... data | |
commit-message: Import latest Can I use... data | |
body: This PR has been auto-generated to pull in the latest copy of Can I use... `data.json` from [upstream](https://github.com/Fyrd/caniuse/blob/master/data.json). | |
labels: compat | |
reviewers: Xyene, quantum5 | |
branch: update-caniuse |