Determining the (Git) Branch of the Jenkins Pipeline Job

Featured image for sharing metadata for article

When running Jenkins' Multibranch pipelines, you get a handy environment variable GIT_BRANCH which tells you what the current branch is, so you can do different things in your pipeline.

However, when you're using a Pipeline Job, that's not possible, as the environment variable isn't set.

Fortunately, this is available to the Groovy sandbox, and as Mad Physicist mentions on StackOverflow, we can reference it using:

scm.branches[0].name

This allows us to see which branch was used to check out the script that is currently executing.

Written by Jamie Tanna's profile image Jamie Tanna on , and last updated on .

Content for this article is shared under the terms of the Creative Commons Attribution Non Commercial Share Alike 4.0 International, and code is shared under the Apache License 2.0.

#blogumentation #jenkins #git.

This post was filed under articles.

Interactions with this post

Interactions with this post

Below you can find the interactions that this page has had using WebMention.

Have you written a response to this post? Let me know the URL:

Do you not have a website set up with WebMention capabilities? You can use Comment Parade.