Rebase l10n_master Daily #859
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: Rebase l10n_master Daily | |
on: | |
schedule: | |
- cron: "31 3 * * *" | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- run: | | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
if ! git fetch origin l10n_master; then | |
exit 0 | |
fi | |
git merge origin/l10n_master | |
git push origin main |