pull upstream changes for new untranslated strings (ID) #312
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: pull upstream changes for new untranslated strings (ID) | |
run-name: pull upstream changes for new untranslated strings (ID) | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '43 4 * * *' | |
concurrency: | |
group: fetch | |
permissions: | |
contents: write | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.ACCESS_TOKEN }} | |
- run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "get-upstream-changes-I10n-id.yml" | |
git remote add upstream https://github.com/bluesky-social/social-app.git | |
git fetch upstream main | |
git checkout --track origin/main | |
git rebase upstream/main | |
git push -f origin HEAD |