我如何向会议管道添加版本控制?

问题描述 投票:0回答:1

向Concourse管道发出fly命令后,我想对该新管道进行版本控制。

我已经尝试在GIT仓库中维护一个单独的`version'文件。

但是我的要求是在管道作业名称上显示此版本。

Please see the image where a version has to be appended

添加更多详细信息:

我正在寻找GIT中的工具来监视特定文件夹上的提交(例如xyz)。我有类似下面的内容:

Is there a tool to watch a remote Git repository on Ubuntu and do popup notifications when commits are made?

https://github.com/jakeonrails/git-notify

git version-control versioning pipeline concourse-pipeline
1个回答
0
投票

我通过在作业名称的管道文件中放置pipeline_version的占位符来实现这一点。

- name: set_env_test_((pipeline_version))

在参数文件'pipeline_version'中填充如下:

pipeline_version: 1.0.0

Click here to see what was achieved

© www.soinside.com 2019 - 2024. All rights reserved.