mirror of
https://github.com/PCSX2/pcsx2.git
synced 2026-01-31 01:15:24 +01:00
Bumps the ci-deps group with 1 update: [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request).
Updates `peter-evans/create-pull-request` from 8.0.0 to 8.1.0
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](98357b18bf...c0f553fe54)
---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
dependency-version: 8.1.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: ci-deps
...
Signed-off-by: dependabot[bot] <support@github.com>
29 lines
949 B
YAML
29 lines
949 B
YAML
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@v6
|
|
|
|
- name: Update Base Translation
|
|
run: ./.github/workflows/scripts/common/update_base_translation.sh
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0
|
|
with:
|
|
title: "Qt: Update Base Translation"
|
|
commit-message: "[ci skip] Qt: Update Base Translation."
|
|
committer: "PCSX2 Bot <PCSX2Bot@users.noreply.github.com>"
|
|
author: "PCSX2 Bot <PCSX2Bot@users.noreply.github.com>"
|
|
body: "Daily update of base translation sources."
|
|
branch: update-base-translation
|
|
delete-branch: true
|