module
Version:
v0.2.0
Opens a new window with list of versions in this module.
Published: Oct 13, 2019
License: MIT
Opens a new window with license information.
README
¶
Label Syncer

Action to sync GitHub labels in the declarative way.
Usage
Create .github/labels.yml
- color: d73a4a
description: Something isn't working
name: bug
- color: 0075ca
description: Improvements or additions to documentation
name: documentation
- color: cfd3d7
description: This issue or pull request already exists
name: duplicate
To create .github/labels.yml for the current status of labels, use label-exporter.
Create Workflow
name: Sync labels in the declarative way
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1.0.0
- uses: micnncim/action-label-syncer@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
with:
manifest: labels.yml # default: .github/labels.yml
See also
LICENSE
MIT License
Click to show internal directories.
Click to hide internal directories.