Update Comparison List (Latest) #29
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 Comparison List (Latest) | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: 0 0 * * 1 | |
jobs: | |
list_generate: | |
name: List Generate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking Repository | |
uses: actions/checkout@v4 | |
- name: Run update langauge script | |
id: mc | |
run: python .github/scripts/update-language.py | |
- name: Commit & Push changes | |
uses: actions-js/push@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
message: "chore: 更新 Minecraft ${{ steps.mc.outputs.mc_version }} 對照表" |