dependabot / dependabot-core

🤖 Dependabot's core logic for creating update PRs.
https://docs.github.com/en/code-security/dependabot
MIT License
4.6k stars 972 forks source link

commit messages break conventional commit rules #9304

Open shanduur opened 5 months ago

shanduur commented 5 months ago

Is there an existing issue for this?

Package ecosystem

All

Package manager version

*

Language version

*

Manifest location and content before the Dependabot update

No response

dependabot.yml content

# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
  - package-ecosystem: "gomod"
    directory: "/"
    schedule:
      interval: "daily"
    commit-message:
      prefix: "fix"
      include: "scope"
    labels:
      - "area/dependency"
    groups:
      k8s-dependencies:
        patterns:
          - "k8s.io/*"
          - "sigs.k8s.io/*"
  - package-ecosystem: "docker"
    directory: "/"
    schedule:
      interval: "daily"
    commit-message:
      prefix: "fix"
      include: "scope"
    labels:
      - "area/dependency"
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "daily"
    commit-message:
      prefix: "fix"
      include: "scope"
    labels:
      - "area/dependency"

Updated dependency

No response

What you expected to see, versus what you actually saw

Expected:

fix(deps): bump github.com/onsi/gomega from 1.27.10 to 1.31.1

Actual:

fix(deps): Bump github.com/onsi/gomega from 1.27.10 to 1.31.1

Native package manager behavior

No response

Images of the diff or a link to the PR, issue, or logs

No response

Smallest manifest that reproduces the issue

No response

shanduur commented 5 months ago

This looks like a regression from:

shanduur commented 5 months ago

cc @deivid-rodriguez