File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ const publishChartJob = (event: Event) => {
99
99
jobs [ publishChartJobName ] = publishChartJob
100
100
101
101
// Run the entire suite of tests WITHOUT publishing anything initially. If
102
- // EVERYTHING passes AND this was a push (merge, presumably) to the v2 branch,
102
+ // EVERYTHING passes AND this was a push (merge, presumably) to the main branch,
103
103
// then run jobs to publish "edge" images.
104
104
async function runSuite ( event : Event ) : Promise < void > {
105
105
await new SerialGroup (
@@ -113,7 +113,7 @@ async function runSuite(event: Event): Promise<void> {
113
113
buildGrafanaJob ( event )
114
114
)
115
115
) . run ( )
116
- if ( event . worker ?. git ?. ref == "master " ) {
116
+ if ( event . worker ?. git ?. ref == "main " ) {
117
117
// Push "edge" images.
118
118
//
119
119
// npm packages MUST be semantically versioned, so we DON'T publish an
You can’t perform that action at this time.
0 commit comments