Skip to content
play

GitHub Action

Github Commit Timestamp Tagger

0.0.1 Latest version

Github Commit Timestamp Tagger

play

Github Commit Timestamp Tagger

Tag the latest commit with a base version and a timestamp

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Github Commit Timestamp Tagger

uses: mcpierce/[email protected]

Learn more about this action in mcpierce/github-commit-timestamp-tagger

Choose a version

Github Commit Timestamp Tagger

This action met a very simple need I had that nothing else seemed to do: it generates a tag for commits on a branch where the tagname is composed of a base version and a timestamp.

Nothing fancy. Just a way to tag commits to, for example, a development branch so a build can be produced for each merge.

Usage

Add a workflow file like the following to your project:

name: "Tag commits on develop"

on:
  push:
    branches:
      - develop

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - name: Apply a tag to the new commit
      uses: mcpierce/github-commit-timestamp-tagger@master
      with:
        repo-token: "${{ secrets.GITHUB_TOKEN }}"
        base_version: "v0.5.0"