Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .chloggen/fix-issuegenerator-body.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: bug_fix

# The name of the component, or a single word describing the area of concern, (e.g. crosslink)
component: issuegenerator

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Print correct workflow link in the issue body.

# One or more tracking issues related to the change
issues: [840]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
2 changes: 1 addition & 1 deletion issuegenerator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
case "jobName":
return "`" + rg.envVariables[githubWorkflow] + "`"
case "linkToBuild":
return fmt.Sprintf("%s/%s/actions/runs/%s", rg.envVariables[githubServerURL], rg.envVariables[githubOwnerAndRepository], rg.envVariables[githubRunID])
return fmt.Sprintf("%s/%s/%s/actions/runs/%s", rg.envVariables[githubServerURL], rg.envVariables["githubOwner"], rg.envVariables["githubRepository"], rg.envVariables[githubRunID])

Check warning on line 228 in issuegenerator/main.go

View check run for this annotation

Codecov / codecov/patch

issuegenerator/main.go#L228

Added line #L228 was not covered by tests
case "failedTests":
return rg.reports[rg.reportIterator].getFailedTests()
default:
Expand Down
Loading