diff --git a/.github/labeler-pull-requests.yml b/.github/labeler-pull-requests.yml deleted file mode 100644 index de7f61f..0000000 --- a/.github/labeler-pull-requests.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -chore: - - changed-files: - - any-glob-to-any-file: - - ".github/**/*" - - ".gitignore" - - "scripts/**/*" - - "go.mod" - - "go.sum" -dependencies: - - changed-files: - - any-glob-to-any-file: - - "go.mod" - - "go.sum" -documentation: - - changed-files: - - any-glob-to-any-file: - - "**/*.md" - - "examples/**/*" - - "docs/**/*" - - "website/**/*" -github-actions: - - changed-files: - - any-glob-to-any-file: - - ".github/workflows/**/*" -needs-review: - - changed-files: - - any-glob-to-any-file: - - "**" -provider: - - changed-files: - - any-glob-to-any-file: - - "vra/**/*" - - "GNUmakefile" - - "go.mod" - - "go.sum" - - "main.go" diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml deleted file mode 100644 index ced0efa..0000000 --- a/.github/workflows/pull-requests.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Pull Request Labels - -on: - pull_request_target: - branches: - - main - types: - - opened - - synchronize - - reopened - - edited - - ready_for_review - -jobs: - labeler: - name: Labeler - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: write - steps: - - name: Apply Labels - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5.0.0 - with: - configuration-path: .github/labeler-pull-requests.yml - repo-token: '${{ secrets.GITHUB_TOKEN }}'