Setup Repository Labels #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Setup Repository Labels | |
on: | |
workflow_dispatch: # Allows manual triggering | |
jobs: | |
sync-labels: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: micnncim/action-label-syncer@v1 | |
name: Sync Labels | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |