Skip to content

Commit

Permalink
chore: update emails (#3211)
Browse files Browse the repository at this point in the history
* chore: udpate emails

* Update ignite/pkg/xgit/xgit.go

Co-authored-by: Thomas Bruyelle <[email protected]>

* fix tests

* Update code_of_conduct.md

Co-authored-by: Alex Johnson <[email protected]>

Co-authored-by: Thomas Bruyelle <[email protected]>
Co-authored-by: Alex Johnson <[email protected]>
Co-authored-by: Thomas Bruyelle <[email protected]>
Co-authored-by: Danilo Pantani <[email protected]>
  • Loading branch information
5 people authored Dec 2, 2022
1 parent 0c06ee5 commit 8ccb10d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion code_of_conduct.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ representative at an online or offline event.

Report instances of abusive, harassing, or otherwise unacceptable behavior to the community leaders responsible for
enforcement at
<conduct@tendermint.com>.
<conduct@ignite.com>.

All complaints will be reviewed and investigated promptly and fairly.

Expand Down
6 changes: 1 addition & 5 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,9 @@ const config = {
{
title: "Contact",
items: [
{
label: "Media Inquiries",
href: "mailto:[email protected]",
},
{
label: "Business Inquiries",
href: "mailto:business@tendermint.com",
href: "mailto:business@ignite.com",
},
],
},
Expand Down
4 changes: 2 additions & 2 deletions ignite/pkg/xgit/xgit.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
var (
commitMsg = "Initialized with Ignite CLI"
devXAuthor = &object.Signature{
Name: "Developer Experience team at Tendermint",
Email: "hello@tendermint.com",
Name: "Developer Experience team at Ignite",
Email: "hello@ignite.com",
When: time.Now(),
}
)
Expand Down
4 changes: 2 additions & 2 deletions ignite/pkg/xgit/xgit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ func TestInitAndCommit(t *testing.T) {
if assert.NotNil(lastCommit) {
assert.Equal("Initialized with Ignite CLI", lastCommit.Message)
assert.WithinDuration(time.Now(), lastCommit.Committer.When, 10*time.Second)
assert.Equal("Developer Experience team at Tendermint", lastCommit.Author.Name)
assert.Equal("hello@tendermint.com", lastCommit.Author.Email)
assert.Equal("Developer Experience team at Ignite", lastCommit.Author.Name)
assert.Equal("hello@ignite.com", lastCommit.Author.Email)
stats, err := lastCommit.Stats()
require.NoError(err)
var files []string
Expand Down

0 comments on commit 8ccb10d

Please sign in to comment.