Skip to content

Commit

Permalink
Merge pull request #515 from mimmi20/updates
Browse files Browse the repository at this point in the history
add dependency groups
  • Loading branch information
mimmi20 authored Aug 7, 2023
2 parents 07f409a + bf5cf06 commit e64730c
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 8 deletions.
40 changes: 40 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,43 @@ version: 2

updates:
- package-ecosystem: "composer"

directory: "/"

schedule:
interval: "daily"

groups:
# Specify a name for the group, which will be used in pull request titles
# and branch names
minor-patch-dependencies:
# Define patterns to include dependencies in the group (based on
# dependency name)
patterns:
- "*"
# exclude-patterns:
# - "gc_ruboconfig"

open-pull-requests-limit: 10

reviewers:
- "mimmi20"

assignees:
- "mimmi20"

labels:
- "dependencies"
- "patch"

versioning-strategy: "increase"

target-branch: "master"

commit-message:
include: "scope"
prefix: "composer"

# ignore:
# - dependency-name: infection/infection
# versions:
Expand All @@ -29,17 +50,36 @@ updates:
# - ">= 0"

- package-ecosystem: "github-actions"

directory: "/"

schedule:
interval: "daily"

groups:
# Specify a name for the group, which will be used in pull request titles
# and branch names
minor-patch-dependencies:
# Define patterns to include dependencies in the group (based on
# dependency name)
patterns:
- "*"
# exclude-patterns:
# - "gc_ruboconfig"

open-pull-requests-limit: 10

reviewers:
- "mimmi20"

assignees:
- "mimmi20"

labels:
- "dependencies"
- "patch"

target-branch: "master"

commit-message:
prefix: "github-actions"
17 changes: 9 additions & 8 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
skip-rector: true
skip-phpmd: true
skip-psalm: true
skip-composer-ununsed: false
secrets:
envPAT: "${{ secrets.GITHUB_TOKEN }}"

Expand All @@ -46,12 +47,12 @@ jobs:
# matrix:
# operating-system:
# - "ubuntu-20.04"
# - "ubuntu-22.04"
#
# php-version: ${{ fromJson(needs.ci.outputs.version) }}
# php-version:
# # Should use the lowest supported version
# - "8.1"
#
# dependencies:
# - "highest"
# - "lowest"
#
# steps:
Expand All @@ -74,7 +75,7 @@ jobs:
# env:
# fail-fast: true
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# phpts: "ts"
# phpts: "nts"
#
# - name: "Update dependencies with composer"
# uses: "ramsey/composer-install@v2"
Expand Down Expand Up @@ -102,12 +103,12 @@ jobs:
# matrix:
# operating-system:
# - "ubuntu-20.04"
# - "ubuntu-22.04"
#
# php-version: ${{ fromJson(needs.ci.outputs.version) }}
# php-version:
# # Should use the lowest supported version
# - "8.1"
#
# dependencies:
# - "highest"
# - "lowest"
#
# steps:
Expand All @@ -130,7 +131,7 @@ jobs:
# env:
# fail-fast: true
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# phpts: "ts"
# phpts: "nts"
#
# - name: "Update dependencies with composer"
# uses: "ramsey/composer-install@v2"
Expand Down

0 comments on commit e64730c

Please sign in to comment.