summaryrefslogtreecommitdiff
path: root/azure-pipelines/templates/ci-git-rebase.yml
diff options
context:
space:
mode:
Diffstat (limited to 'azure-pipelines/templates/ci-git-rebase.yml')
-rw-r--r--azure-pipelines/templates/ci-git-rebase.yml10
1 files changed, 0 insertions, 10 deletions
diff --git a/azure-pipelines/templates/ci-git-rebase.yml b/azure-pipelines/templates/ci-git-rebase.yml
deleted file mode 100644
index 96a23a540..000000000
--- a/azure-pipelines/templates/ci-git-rebase.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-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'))