mirror of
https://github.com/tiennm99/github-readme-stats.git
synced 2026-05-14 08:58:28 +00:00
112000667c
* ci: add update languages action * ci: make sure PR is created when upstream languages are updated
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
name: Update supported languages
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 */30 * *"
|
|
|
|
jobs:
|
|
updateLanguages:
|
|
if: github.repository == 'anuraghazra/github-readme-stats'
|
|
name: Update supported languages
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [16.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: npm
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
env:
|
|
CI: true
|
|
|
|
- name: Run update-languages-json.js script
|
|
run: npm run generate-langs-json
|
|
|
|
- name: Create Pull Request if upstream language file is changed
|
|
uses: peter-evans/create-pull-request@v4
|
|
with:
|
|
commit-message: "refactor: update languages JSON"
|
|
branch: "update_langs/patch"
|
|
delete-branch: true
|
|
title: Update languages JSON
|
|
body:
|
|
"The
|
|
[update-langs](https://github.com/anuraghazra/github-readme-stats/actions/workflows/update-langs.yaml)
|
|
action found new/updated languages in the [upstream languages JSON
|
|
file](https://raw.githubusercontent.com/github/linguist/master/lib/linguist/languages.yml)."
|
|
labels: "ci, lang-card"
|