如果以任何方式允许的话,有什么方法可以通过提供通用的“-get”来优化我的代码,而不是给多个工作提供相同的“-get”。
目前,我为不同的工作提供了相同的代码(-get)
jobs:
- name: Name1
plan:
- aggregate:
- get: anyrepo1
- get: anyrepo2
- task: taskhere
image: anyimage1
file: file1.yml
- name: Name2
plan:
- aggregate:
- get: anyrepo1
- get: anyrepo2
- task: taskhere
image: anyimage1
file: file2.yml
我没有收到任何错误,但想优化代码