Skip to content

Merge pull request #6 from ReactSphere/copilot/add-auto-label-for-pr-… #1

Merge pull request #6 from ReactSphere/copilot/add-auto-label-for-pr-…

Merge pull request #6 from ReactSphere/copilot/add-auto-label-for-pr-… #1

Workflow file for this run

name: Sync Labels
on:
push:
branches:
- main
- master
paths:
- .github/labels.yml
workflow_dispatch:
permissions:
issues: write
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Sync labels
uses: EndBug/label-sync@v2
with:
config-file: .github/labels.yml
delete-other-labels: false
token: ${{ secrets.GITHUB_TOKEN }}