Skip to content

Commit a483539

Browse files
authored
ci(release-please): fix footer not appearing on release PRs (#1902)
## Summary - `pull-request-footer` was not being applied to release PRs because release-please defaults `separatePullRequests` to `true` for single-package configs, which skips the Merge plugin responsible for applying the footer - Setting `separate-pull-requests: false` forces the Merge plugin to run ## Context - This is a workaround for an upstream bug in release-please where `pull-request-footer` is silently ignored for single-package repos - Affects both regular release PRs and Java SNAPSHOT PRs - Same issue exists in grafana/flint and likely any single-package repo using `pull-request-footer` ## Test plan - [ ] After merging, verify PR #1896 gets updated with the footer on the next release-please run Signed-off-by: Gregor Zeitlinger <gregor.zeitlinger@grafana.com>
1 parent 59c8552 commit a483539

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/config/release-please-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"separate-pull-requests": false,
34
"pull-request-footer": "> [!IMPORTANT]\n> Close and reopen this PR to trigger CI checks.",
45
"packages": {
56
".": {

0 commit comments

Comments
 (0)