From 975713285da9ba99c8a83e3a20a75cea978ebe59 Mon Sep 17 00:00:00 2001 From: devpow112 Date: Fri, 5 Dec 2025 16:49:26 -0500 Subject: [PATCH] chore: remove label sync files --- .github/labels.yml | 42 ------------------------------- .github/workflows/sync-labels.yml | 24 ------------------ 2 files changed, 66 deletions(-) delete mode 100644 .github/labels.yml delete mode 100644 .github/workflows/sync-labels.yml diff --git a/.github/labels.yml b/.github/labels.yml deleted file mode 100644 index e971af6..0000000 --- a/.github/labels.yml +++ /dev/null @@ -1,42 +0,0 @@ -- name: auto - description: Opened by an automated process - color: bdce3b -- name: bug - description: Something isn't working - color: d73a4a -- name: clean-up - description: Clean-up or refactor of something already existing - color: a7afe5 -- name: dependencies - description: Pull requests that update a dependency file - color: 0366d6 -- name: documentation - description: Improvements or additions to documentation - color: 0075ca -- name: duplicate - description: This issue or pull request already exists - color: cfd3d7 -- name: enhancement - description: New feature or request - color: a2eeef -- name: github-actions - description: Pull requests that update GitHub Actions code - color: 000000 -- name: good first issue - description: Good for newcomers - color: 7057ff -- name: help wanted - description: Extra attention is needed - color: 008672 -- name: invalid - description: This doesn't seem right - color: e4e669 -- name: python - description: Pull requests that update Python code - color: 2b67c6 -- name: question - description: Further information is requested - color: d876e3 -- name: won't fix - description: This will not be worked on - color: ffffff diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml deleted file mode 100644 index e606b1a..0000000 --- a/.github/workflows/sync-labels.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Sync Labels -on: - push: - branches: main - paths: - - .github/workflows/sync-labels.yml - - .github/labels.yml - workflow_dispatch: -permissions: - contents: read - issues: write -concurrency: sync-labels -jobs: - sync-labels: - name: Sync Labels - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - name: Checkout - uses: actions/checkout@v6.0.1 - - name: Sync labels - uses: micnncim/action-label-syncer@v1.3.0 - with: - token: ${{github.token}}