diff --git a/.github/renovate.json b/.github/renovate.json index c2bf0039..140ab131 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -51,8 +51,8 @@ { "description": "Group together all python-semantic-release dependencies", "groupName": "python-semantic-release dependencies", - "matchPackagePatterns": [ - "^python-semantic-release*" + "matchPackageNames": [ + "^python-semantic-release" ] }, { diff --git a/.github/workflows/update-python-dependencies.yml b/.github/workflows/update-python-dependencies.yml index b77beb78..de88bcbe 100644 --- a/.github/workflows/update-python-dependencies.yml +++ b/.github/workflows/update-python-dependencies.yml @@ -15,7 +15,7 @@ jobs: - name: Get commit message id: get-commit-message run: | - commit_message="$(git log -1 --pretty=%B)" + commit_message="$(git log -2 --pretty=%B | sed -n '2p')" echo "commit-message=$commit_message" >> "$GITHUB_OUTPUT" - name: Determine the groups that will need to be exported id: set-output