diff --git a/.github/labeler.yml b/.github/labeler.yml deleted file mode 100644 index 8e8a461..0000000 --- a/.github/labeler.yml +++ /dev/null @@ -1,21 +0,0 @@ -docs: - - '**/*.md' - - '**/*.MD' - -.github: - - '.github/**/*' - -CI: - - '.github/workflows/**/*' - - '.github/actions/**/*' - -docker: - - 'Dockerfile' - - 'docker/**/*' - - '.dockerignore' - - 'docker-entrypoint.sh' - - '3proxy.cfg' - -dev: - - '.gitignore' - - '.editorconfig' diff --git a/.github/renovate.json b/.github/renovate.json index 4c497f4..dcc34c0 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,24 +1,18 @@ { - "labels": [ - "dependencies" - ], - "assignees": [ - "tarampampam" - ], + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "labels": ["dependencies"], + "assignees": ["tarampampam"], + "enabledManagers": ["dockerfile"], "extends": [ "config:base", ":disableDependencyDashboard" ], "regexManagers": [ { - "fileMatch": [ - "^Dockerfile$" - ], - "matchStrings": [ - "ARG Z3PROXY_VERSION=(?.*?)\n" - ], - "depNameTemplate": "github.com/z3APA3A/3proxy", - "datasourceTemplate": "git-tags" + "fileMatch": ["^Dockerfile$"], + "matchStrings": ["ARG Z3PROXY_VERSION=(?.*?)\n"], + "depNameTemplate": "z3APA3A/3proxy", + "datasourceTemplate": "github-tags" } ] } diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml deleted file mode 100644 index 030647f..0000000 --- a/.github/workflows/labeler.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: labeler - -on: [pull_request_target] - -jobs: - triage: - runs-on: ubuntu-20.04 - steps: - - uses: actions/labeler@v4 # Action page: - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" - sync-labels: true