diff --git a/.github/labeler.config.yml b/.github/labeler.config.yml deleted file mode 100644 index f8319c7..0000000 --- a/.github/labeler.config.yml +++ /dev/null @@ -1,24 +0,0 @@ -type:build: - - ".github/**/*" - - ".coveralls.yml" - - "phpcs.xml" - - ".gitignore" - - "ecs.yml" - -dependencies: - - "composer.json" - - "composer.lock" - -type:common: - - "src/**/*" - -type:tests: - - 'tests/**/*' - - 'phpunit.xml.dist' - - 'tests.sh' - -theme:docs: - - "README.md" - - "LICENSE" - - "CONTRIBUTING.md" - - "CODE_OF_CONDUCT.md" diff --git a/.github/workflows/auto_approve.yml b/.github/workflows/auto_approve.yml deleted file mode 100644 index 4c0e6e4..0000000 --- a/.github/workflows/auto_approve.yml +++ /dev/null @@ -1,14 +0,0 @@ -on: pull_request_review -name: 'Label approved pull requests' -jobs: - labelWhenApproved: - name: 'Label when approved' - runs-on: ubuntu-latest - steps: - - name: 'Label when approved' - uses: pullreminders/label-when-approved-action@master - env: - APPROVALS: "1" - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - ADD_LABEL: "approved" - REMOVE_LABEL: "awaiting review" diff --git a/.github/workflows/auto_labeler.yml b/.github/workflows/auto_labeler.yml deleted file mode 100644 index 6b13754..0000000 --- a/.github/workflows/auto_labeler.yml +++ /dev/null @@ -1,14 +0,0 @@ -name: "Auto labeling for a pull request" -on: - - pull_request_target - -jobs: - triage: - name: "Checking for labels" - runs-on: ubuntu-latest - steps: - - uses: actions/labeler@main - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" - sync-labels: true - configuration-path: ".github/labeler.config.yml"