File tree 1 file changed +12
-2
lines changed
1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ foreach ($dependency in $currentVersions.Keys)
124
124
$hasChanges = $updates.Count -gt 0
125
125
if ($hasChanges )
126
126
{
127
- $branchName = ' dependencies' + ($updates.Keys -join ' +' )
127
+ $branchName = ' dependencies/ ' + ($updates.Keys -join ' +' )
128
128
[array ] $versionUpdateStrings = $updates.Values | ForEach-Object { " $ ( $_.Name ) to v$ ( $_.Version ) " }
129
129
$prTitle = ' Update ' + ($versionUpdateStrings -join ' and ' )
130
130
$commitMessage = $prTitle
@@ -134,7 +134,17 @@ if ($hasChanges)
134
134
$ ( $_.ReleaseNotes )
135
135
"@
136
136
}
137
- $prBody = $updateReleaseNoteStrings -join " `n "
137
+ $prBody = @'
138
+ # Maintainer Note
139
+ > [!WARNING]
140
+ > This PR will not trigger CI by default. Please close it and reopen manually to trigger the CI.
141
+ >
142
+ > Unfortunately, this is a consequence of the current GitHub Action security model (by default, PRs created by bots
143
+ > aren't allowed to trigger other bots).
144
+
145
+ The updates packages' release notes follow below.
146
+
147
+ '@ + $updateReleaseNoteStrings -join " `n "
138
148
}
139
149
140
150
ApplyUpdates $updates
You can’t perform that action at this time.
0 commit comments