Skip to content

Commit 035961e

Browse files
authored
Merge pull request #16 from krancour/fix-brigade.ts
account for new default branch name
2 parents 3407f91 + b3e4555 commit 035961e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.brigade/brigade.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const publishChartJob = (event: Event) => {
9999
jobs[publishChartJobName] = publishChartJob
100100

101101
// 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,
103103
// then run jobs to publish "edge" images.
104104
async function runSuite(event: Event): Promise<void> {
105105
await new SerialGroup(
@@ -113,7 +113,7 @@ async function runSuite(event: Event): Promise<void> {
113113
buildGrafanaJob(event)
114114
)
115115
).run()
116-
if (event.worker?.git?.ref == "master") {
116+
if (event.worker?.git?.ref == "main") {
117117
// Push "edge" images.
118118
//
119119
// npm packages MUST be semantically versioned, so we DON'T publish an

0 commit comments

Comments
 (0)