Skip to content

Update the branch for upstream pull request #22

Update the branch for upstream pull request

Update the branch for upstream pull request #22

Workflow file for this run

name: Update the branch for upstream pull request
on:
workflow_dispatch:
concurrency:
group: export
permissions:
contents: write
id-token: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git remote add upstream https://github.com/bluesky-social/social-app.git
git fetch upstream main
git checkout -b export upstream/main
git restore --source origin/l10n_main src/**/uk/*
git add --all
if ! git diff-index --quiet HEAD; then
git config user.name Ukrainians
git config user.email github-actions@github.com
git commit -m 'Update Ukrainian translation'
git push -f origin HEAD
fi