mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-10 00:11:31 +00:00
10 lines
389 B
YAML
10 lines
389 B
YAML
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 $(System.PullRequest.TargetBranch)'
|