Skip to content

Github Commit Timestamp Tagger

Actions
Tag the latest commit with a base version and a timestamp
0.0.1
Latest
Star (2)

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"

Github Commit Timestamp Tagger is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Tag the latest commit with a base version and a timestamp
0.0.1
Latest

Github Commit Timestamp Tagger is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.