Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lantoli committed Apr 9, 2024
1 parent ec4fcd4 commit 16e295e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/check-changelog/check-changelog.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func main() {

filePath := fmt.Sprintf(".changelog/%s.txt", number)
content, errFile := os.ReadFile(filePath)
if errFile == nil { // if file exists then it's always validated, never skipped.
if errFile == nil { // Always validate changelog file if present, skip logic is not considered in this case
entry := changelog.Entry{
Body: string(content),
}
Expand Down

0 comments on commit 16e295e

Please sign in to comment.