Skip to content

Create a TypeScript Action with tests, linting, workflow, publishing, and versioning

License

Notifications You must be signed in to change notification settings

fatjyc/tagger-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace
 
 

Repository files navigation

GitHub Tagger Action

Tags the commit with a given ref

Getting Started

To use, create a workflow (eg: .github/workflows/label.yml see Creating a Workflow file) and add a step like 'tag commit' on the below sample. A token will be needed so the workflow can make calls to GitHub's rest API.

name: 'My workflow'

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Tag commit
        uses: fatjyc/github-tagger@v0.0.1
        with:
          repo: 'repo'
          oowner: 'owner'
          token: 'token'
          ref: 'ref'
          tag: 'my_tag'

About

Create a TypeScript Action with tests, linting, workflow, publishing, and versioning

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 87.6%
  • JavaScript 12.4%