Update langs #95
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: Update langs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 10 * * 1' | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Update langs | |
run: | | |
apt update && apt install wget unzip git jq -y | |
npm ci | |
./update.sh | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
commit-message: Update langs | |
title: Update langs | |
branch: update-langs |