Legacy Stargate of Harmonic Breakthrough Quest (#18157) #416
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: Quest Book I18N | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- config/betterquesting/DefaultQuests/QuestLinesOrder.txt | |
- config/betterquesting/DefaultQuests/QuestLines/*.json | |
- config/betterquesting/DefaultQuests/Quests/*/*.json | |
workflow_dispatch: { } | |
jobs: | |
i18n: | |
name: Generate Quest Book I18N Files | |
permissions: | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Generate Quest Book I18N Files | |
run: python .github/scripts/questbook-i18n.py | |
- name: Create PR | |
uses: peter-evans/[email protected] | |
with: | |
title: Update Quest Book I18N | |
body: Automated changes by Quest Book I18N workflow. | |
commit-message: Update Quest Book I18N | |
delete-branch: true | |
branch: quest-book-i18n/patch |