|
|
@ -8,16 +8,23 @@ steps:
|
|
|
|
- script: chmod a+x $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh && $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh
|
|
|
|
- script: chmod a+x $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh && $(System.DefaultWorkingDirectory)/.ci/scripts/merge/yuzubot-git-config.sh
|
|
|
|
displayName: 'Apply Git Configuration'
|
|
|
|
displayName: 'Apply Git Configuration'
|
|
|
|
- task: PythonScript@0
|
|
|
|
- task: PythonScript@0
|
|
|
|
displayName: 'Discover, Download, and Apply Patches'
|
|
|
|
displayName: 'Discover, Download, and Apply Patches (Mainline)'
|
|
|
|
inputs:
|
|
|
|
inputs:
|
|
|
|
scriptSource: 'filePath'
|
|
|
|
scriptSource: 'filePath'
|
|
|
|
scriptPath: '.ci/scripts/merge/apply-patches-by-label.py'
|
|
|
|
scriptPath: '.ci/scripts/merge/apply-patches-by-label.py'
|
|
|
|
arguments: '${{ parameters.matchLabelPublic }} patches-public'
|
|
|
|
arguments: '${{ parameters.matchLabelPublic }} $(MergeTaglinePublic) patches-public'
|
|
|
|
workingDirectory: '$(System.DefaultWorkingDirectory)'
|
|
|
|
workingDirectory: '$(System.DefaultWorkingDirectory)'
|
|
|
|
- task: PythonScript@0
|
|
|
|
- task: PythonScript@0
|
|
|
|
displayName: 'Discover, Download, and Apply Patches'
|
|
|
|
displayName: 'Discover, Download, and Apply Patches (Patreon Public)'
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
|
|
|
|
scriptSource: 'filePath'
|
|
|
|
|
|
|
|
scriptPath: '.ci/scripts/merge/apply-patches-by-label.py'
|
|
|
|
|
|
|
|
arguments: '${{ parameters.matchLabel }} $(MergeTaglinePrivate)\ Public patches-mixed-public'
|
|
|
|
|
|
|
|
workingDirectory: '$(System.DefaultWorkingDirectory)'
|
|
|
|
|
|
|
|
- task: PythonScript@0
|
|
|
|
|
|
|
|
displayName: 'Discover, Download, and Apply Patches (Patreon Private)'
|
|
|
|
inputs:
|
|
|
|
inputs:
|
|
|
|
scriptSource: 'filePath'
|
|
|
|
scriptSource: 'filePath'
|
|
|
|
scriptPath: '.ci/scripts/merge/apply-patches-by-label-private.py'
|
|
|
|
scriptPath: '.ci/scripts/merge/apply-patches-by-label-private.py'
|
|
|
|
arguments: '$(PrivateMergeUser) ${{ parameters.matchLabel }} patches-private'
|
|
|
|
arguments: '$(PrivateMergeUser) ${{ parameters.matchLabel }} $(MergeTaglinePrivate)\ Private patches-private'
|
|
|
|
workingDirectory: '$(System.DefaultWorkingDirectory)'
|
|
|
|
workingDirectory: '$(System.DefaultWorkingDirectory)'
|
|
|
|