Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
play

GitHub Action

Auto label with your title

v.1.0.1

Auto label with your title

play

Auto label with your title

Automation generate label for issues

Installation

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

              

- name: Auto label with your title

uses: CaiJingLong/[email protected]

Learn more about this action in CaiJingLong/action_auto_label

Choose a version

Auto label

If your label is [bug] The title have problem, then the action will be add a 'bug' label for it.

This is simply used to explore the use of action. The current version is not recommended for use in a production environment.

Usabe

name: 'On issue'
on:
  issues:
    types: [opened, reopened, edited]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: CaiJingLong/action_auto_label@v1
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}