diff options
author | Vincent Ambo <tazjin@google.com> | 2020-02-21T23·27+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-02-21T23·27+0000 |
commit | 28560fcf8abc2fa07a0e8ba07c2875bbba33eb02 (patch) | |
tree | b45eaab873e93afe60ebb641851b12a424af0efa /ops/besadii | |
parent | ca7c8fe9f03cb610b7fbb6539d3c0ac1ba44a7c6 (diff) |
fix(ops/besadii): Include branch name in build note r/571
Diffstat (limited to 'ops/besadii')
-rw-r--r-- | ops/besadii/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/besadii/main.go b/ops/besadii/main.go index 46b76bd88173..d9c27fe31c1d 100644 --- a/ops/besadii/main.go +++ b/ops/besadii/main.go @@ -94,7 +94,7 @@ cat built-paths | cachix push tazjin`}, func triggerBuild(log *syslog.Writer, token, branch, commit string) { build := Build{ Manifest: prepareManifest(commit), - Note: fmt.Sprintf("Build of 'master' at '%s'", commit), + Note: fmt.Sprintf("Build of '%s' at '%s'", branch, commit), Tags: []string{ // my branch names tend to contain slashes, which are not valid // identifiers in sourcehut. |