boywithkeyboard-archive / labeler

A GitHub action to synchronize labels from a remote or local file. 🏷️

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

labeler

e.g. ./.github/labeler.yml

labels:
  - name: 'foo'
    color: 'd73a4a'
    description: 'Some description.'
  - name: 'bar'
    color: '0075ca'
    description: 'Some description.'

Usage

name: labeler

on:
  push:
    branches:
      - 'main'
    paths:
      - '.github/labeler.yml'
  workflow_dispatch:

jobs:
  labeler:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4

      - name: Run labeler
        uses: boywithkeyboard/labeler@v1
  • src (defaults to ./.github/labeler.yml)

    The file to use as config for labeler. Can be either a remote file, e.g. https://my.domain/example.yml, or a local file.

About

A GitHub action to synchronize labels from a remote or local file. 🏷️

License:Apache License 2.0


Languages

Language:JavaScript 99.8%Language:TypeScript 0.2%