Files @ r24353:3181b4904b04
Branch filter:

Location: cpp/openttd-patchpack/source/azure-pipelines/templates/ci-git-rebase.yml

translators
Update: Translations from eints
german: 1 change by frosch123
steps:
# Rebase to target branch for every PR. This means users don't have to
# rebase every time target branch changes. As long as the PR applies cleanly, we
# will validate it.
- bash: |
    git config user.email 'info@openttd.org'
    git config user.name 'OpenTTD CI'
    git rebase origin/${SYSTEM_PULLREQUEST_TARGETBRANCH}
  displayName: 'Rebase to target branch'
  condition: and(succeeded(), eq(variables['Build.Reason'], 'PullRequest'))