Update Kanji Data from animCJK #1064
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 Kanji Data from animCJK" | |
on: | |
schedule: | |
- cron: "0 22 * * *" | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
timeout-minutes: 55 | |
steps: | |
- name: Checkout mnako/hanzi-writer-data-ja | |
uses: actions/checkout@v4 | |
- name: Checkout parsimonhi/animCJK | |
uses: actions/checkout@v4 | |
with: | |
repository: parsimonhi/animCJK | |
path: animCJK | |
- name: Update Kanji Data from animCJK | |
run: bash .github/workflows/update.sh | |
- name: Clean | |
run: rm -f data/.json && rm -rf animCJK | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
commit-message: Update Kanji Data from the latest master of parsimonhi/animCJK. | |
title: Update Kanji Data | |
body: Update Kanji Data from the latest master of parsimonhi/animCJK. | |
branch: update/kanji | |
branch-suffix: timestamp |