diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 9002be07..00000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,23 +0,0 @@ -version: 2 - -updates: - - package-ecosystem: "composer" - directory: "/" - schedule: - interval: "weekly" - commit-message: - include: "scope" - prefix: "composer" - labels: - - "dependency-update" - versioning-strategy: "widen" - - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - commit-message: - include: "scope" - prefix: "github-actions" - labels: - - "dependency-update" diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yml similarity index 97% rename from .github/workflows/ci.yaml rename to .github/workflows/ci.yml index a3962d9c..4445e56e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: push: branches: - "*.x" + - "renovate/*" env: INI_VALUES: zend.assertions=1,error_reporting=-1,date.timezone="Europe/Rome" @@ -117,7 +118,7 @@ jobs: BASE_BRANCH: origin/${{ github.base_ref }} - name: "Infection on complete code base" - if: ${{ github.event_name != 'pull_request' }} + if: ${{ github.event_name != 'pull_request' && !startsWith(github.ref, 'renovate/') }} timeout-minutes: 30 run: "vendor/bin/infection run --ansi --threads=$(nproc) --skip-initial-tests --coverage=coverage" env: diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..47bca6b0 --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>Slamdunk/.github:renovate-config" + ] +}