diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index db7957a..0000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,14 +0,0 @@ -documentation: - - changed-files: - - any-glob-to-any-file: - - '**/*.md' - - .github/CODEOWNERS - - LICENSE -github-actions: - - changed-files: - - any-glob-to-any-file: - - .github/workflows/*.yml -python: - - changed-files: - - any-glob-to-any-file: - - '**/*.py' diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml deleted file mode 100644 index 6f18267..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@v5.0.0 - - name: Sync labels - uses: micnncim/action-label-syncer@v1.3.0 - with: - token: ${{github.token}}