Skip to content

Commit

Permalink
fix: For PR make prefix shorten by 1 letter (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianczech authored Sep 18, 2023
1 parent 1669a2f commit fbc93aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/testskeleton/testskeleton.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ type AwsRandomNames struct {
func GenerateAwRandomNames() AwsRandomNames {
prid := os.Getenv("PRID")
if prid != "" {
prid = fmt.Sprintf("pr%s", prid)
prid = fmt.Sprintf("p%s", prid)
} else {
prid = "tt"
}
Expand Down

0 comments on commit fbc93aa

Please sign in to comment.