Code Monkey home page Code Monkey logo

auto_tag_branch_on_merge's Introduction

Auto_Tag_Branch_On_Merge

A bash script to automatically create tag on branch merge

  1. Create a new branch in your repository.

  2. Create a new file in the branch called “tag.sh”.

  3. In the tag.sh file, add the following code:

#!/bin/bash

Create a tag for the merge commit

Get the current branch name

BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)

Get the latest commit SHA

LATEST_COMMIT=$(git rev-parse HEAD)

Create a tag with the branch name and commit SHA

git tag -a "$BRANCH_NAME-$LATEST_COMMIT" -m "Tag for merge to master"

  1. Commit and push the tag.sh file to the branch.

  2. Create a pull request to merge the branch into master.

  3. Add a comment to the pull request with the following command:

@azure pipelines run --sh tag.sh

  1. Merge the pull request into master.

  2. The tag will be created automatically on the merge commit.

auto_tag_branch_on_merge's People

Contributors

warrenandre avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.