We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 178da8b + 4426d36 commit 5785812Copy full SHA for 5785812
VERSION
@@ -1,2 +1,2 @@
1
-v0.7.0
2
-Migrate to go modules.
+v0.7.1
+Add team tag to activities
cmd/sfncli/sfncli.go
@@ -232,6 +232,9 @@ func tagsFromEnv() []*sfn.Tag {
232
if account := os.Getenv("_POD_ACCOUNT"); account != "" {
233
tags = append(tags, &sfn.Tag{Key: aws.String("pod-account"), Value: aws.String(account)})
234
}
235
+ if team := os.Getenv("_TEAM_OWNER"); team != "" {
236
+ tags = append(tags, &sfn.Tag{Key: aws.String("team"), Value: aws.String(team)})
237
+ }
238
239
return tags
240
0 commit comments