π Update Base Translation #92
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 Base Translation | |
on: | |
schedule: | |
- cron: "0 0 * * *" # Every day at 12am UTC. | |
workflow_dispatch: # As well as manually. | |
jobs: | |
update: | |
if: github.repository == 'PCSX2/pcsx2' | |
name: "Update Base Translation" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Base Translation | |
run: ./.github/workflows/scripts/common/update_base_translation.sh | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
title: "Qt: Update Base Translation" | |
commit-message: "Qt: Update Base Translation" | |
committer: "PCSX2 Bot <[email protected]>" | |
author: "PCSX2 Bot <[email protected]>" | |
body: "Daily update of base translation sources." | |
branch: update-base-translation | |
delete-branch: true |