File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export class PullRequestGenerator {
61
61
* Generate labels for a pull request
62
62
*/
63
63
generateLabels ( group : UpdateGroup ) : string [ ] {
64
- const labels = [ 'dependencies' , 'automated' ]
64
+ const labels = [ 'dependencies' ]
65
65
66
66
// Add update type labels
67
67
if ( group . updateType === 'major' ) {
@@ -103,8 +103,8 @@ export class PullRequestGenerator {
103
103
104
104
// For single package updates, add the specific package name as a label
105
105
if ( group . updates . length === 1 ) {
106
- // const update = group.updates[0]
107
- labels . push ( group . title ) // This will be like "chore(deps): update dependency stripe to 18.4.0 "
106
+ const update = group . updates [ 0 ]
107
+ labels . push ( update . name ) // Just the package name like "stripe"
108
108
}
109
109
110
110
return labels
You can’t perform that action at this time.
0 commit comments