summaryrefslogtreecommitdiff
path: root/.ci/templates
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-09-30 09:29:28 -0400
committerGravatar Zach Hilman2019-09-30 09:29:28 -0400
commite6f3aad84e91c76568b766f9142fdae52f0f3242 (patch)
treebbbf70fc66ea2b434082ee9df6528b26623d8701 /.ci/templates
parentMerge pull request #2923 from yuzu-emu/revert-2574-dynarmic-jit-nullptr (diff)
downloadyuzu-e6f3aad84e91c76568b766f9142fdae52f0f3242.tar.gz
yuzu-e6f3aad84e91c76568b766f9142fdae52f0f3242.tar.xz
yuzu-e6f3aad84e91c76568b766f9142fdae52f0f3242.zip
ci: Populate patreon PRs on public repository
Diffstat (limited to '.ci/templates')
-rw-r--r--.ci/templates/mergebot-private.yml15
1 files changed, 11 insertions, 4 deletions
diff --git a/.ci/templates/mergebot-private.yml b/.ci/templates/mergebot-private.yml
index a673c5b01..0ba6d5434 100644
--- a/.ci/templates/mergebot-private.yml
+++ b/.ci/templates/mergebot-private.yml
@@ -8,16 +8,23 @@ steps:
8 - script: chmod a+x $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh && $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh 8 - script: chmod a+x $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh && $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh
9 displayName: 'Apply Git Configuration' 9 displayName: 'Apply Git Configuration'
10 - task: PythonScript@0 10 - task: PythonScript@0
11 displayName: 'Discover, Download, and Apply Patches' 11 displayName: 'Discover, Download, and Apply Patches (Mainline)'
12 inputs: 12 inputs:
13 scriptSource: 'filePath' 13 scriptSource: 'filePath'
14 scriptPath: '.ci/scripts/merge/apply-patches-by-label.py' 14 scriptPath: '.ci/scripts/merge/apply-patches-by-label.py'
15 arguments: '${{ parameters.matchLabelPublic }} patches-public' 15 arguments: '${{ parameters.matchLabelPublic }} $(MergeTaglinePublic) patches-public'
16 workingDirectory: '$(System.DefaultWorkingDirectory)' 16 workingDirectory: '$(System.DefaultWorkingDirectory)'
17 - task: PythonScript@0 17 - task: PythonScript@0
18 displayName: 'Discover, Download, and Apply Patches' 18 displayName: 'Discover, Download, and Apply Patches (Patreon Public)'
19 inputs:
20 scriptSource: 'filePath'
21 scriptPath: '.ci/scripts/merge/apply-patches-by-label.py'
22 arguments: '${{ parameters.matchLabel }} $(MergeTaglinePrivate)\ Public patches-mixed-public'
23 workingDirectory: '$(System.DefaultWorkingDirectory)'
24 - task: PythonScript@0
25 displayName: 'Discover, Download, and Apply Patches (Patreon Private)'
19 inputs: 26 inputs:
20 scriptSource: 'filePath' 27 scriptSource: 'filePath'
21 scriptPath: '.ci/scripts/merge/apply-patches-by-label-private.py' 28 scriptPath: '.ci/scripts/merge/apply-patches-by-label-private.py'
22 arguments: '$(PrivateMergeUser) ${{ parameters.matchLabel }} patches-private' 29 arguments: '$(PrivateMergeUser) ${{ parameters.matchLabel }} $(MergeTaglinePrivate)\ Private patches-private'
23 workingDirectory: '$(System.DefaultWorkingDirectory)' 30 workingDirectory: '$(System.DefaultWorkingDirectory)'