Skip to content

datalens-tech/add-labels-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Add Labels Action

CI GitHub Marketplace

Labeler for pull_requests based on commitlint. Adds type/... and component/... labels by PR title

How it works:

  1. The action loads config.json and gets info about type and component labels
  2. After gets labels section from PR title and compares with available labels from config.json
  3. Adds comparable labels and also removes redundant labels from PR

Usage

Example

on:
  pull_request:
    types: [opened, reopened, edited, synchronize]

jobs:
  labeler:
    name: Add labels
    runs-on: ubuntu-latest
    permissions:
      pull-requests: write

    steps:
      - uses: datalens-tech/add-labels-action@v1

Action Inputs

Name Description Default
github_owner Owner of the repository. ${{ github.repository_owner }}
github_repo Repository name ${{ github.event.repository.name }}
github_pr_number GitHub PR number. ${{ github.event.pull_request.number }}
github_pr_title GitHub PR title. ${{ github.event.pull_request.title }}
github_token GitHub token. ${{ github.token }}

Action Outputs

None

Development

Global dependencies

Taskfile commands

For all commands see Taskfile or task --list-all.

License

MIT