diff mbox series

[XEN] CI: Change pipeline name for scheduled pipeline

Message ID 20250327103345.21306-1-anthony.perard@vates.tech (mailing list archive)
State New
Headers show
Series [XEN] CI: Change pipeline name for scheduled pipeline | expand

Commit Message

Anthony PERARD March 27, 2025, 10:34 a.m. UTC
This description is already displayed on the web UI of the list of
pipeline, but using it as "name" will make it available in webhooks as
well and can be used by a bot.

This doesn't change the behavior for other pipeline types, where the
variable isn't set.

Signed-off-by: Anthony PERARD <anthony.perard@vates.tech>
---

Notes:
    doc:
    https://docs.gitlab.com/ci/yaml/#workflowname
    https://docs.gitlab.com/ci/variables/predefined_variables/#predefined-variables

 .gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

Comments

Stefano Stabellini March 27, 2025, 10:59 p.m. UTC | #1
On Thu, 27 Mar 2025, Anthony PERARD wrote:
> This description is already displayed on the web UI of the list of
> pipeline, but using it as "name" will make it available in webhooks as
> well and can be used by a bot.
> 
> This doesn't change the behavior for other pipeline types, where the
> variable isn't set.
> 
> Signed-off-by: Anthony PERARD <anthony.perard@vates.tech>

Acked-by: Stefano Stabellini <sstabellini@kernel.org>


> ---
> 
> Notes:
>     doc:
>     https://docs.gitlab.com/ci/yaml/#workflowname
>     https://docs.gitlab.com/ci/variables/predefined_variables/#predefined-variables
> 
>  .gitlab-ci.yml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index b3beb2ff9d..7974ac4e82 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -4,6 +4,7 @@ variables:
>      description: "Regex to select only some jobs, must be enclosed with /. For example /job1|job2/"
>  
>  workflow:
> +  name: "$CI_PIPELINE_SCHEDULE_DESCRIPTION"
>    rules:
>      - if: $CI_COMMIT_BRANCH =~ /^(master|smoke|^coverity-tested\/.*|stable-.*)$/
>        when: never
> -- 
> 
> 
> Anthony Perard | Vates XCP-ng Developer
> 
> XCP-ng & Xen Orchestra - Vates solutions
> 
> web: https://vates.tech
>
diff mbox series

Patch

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b3beb2ff9d..7974ac4e82 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,6 +4,7 @@  variables:
     description: "Regex to select only some jobs, must be enclosed with /. For example /job1|job2/"
 
 workflow:
+  name: "$CI_PIPELINE_SCHEDULE_DESCRIPTION"
   rules:
     - if: $CI_COMMIT_BRANCH =~ /^(master|smoke|^coverity-tested\/.*|stable-.*)$/
       when: never