We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0c5a15 commit 566a310Copy full SHA for 566a310
internal/loader/metadata.go
@@ -28,7 +28,7 @@ func LoadMetadataForDocs() ([]MetadataForDocs, error) {
28
// Get changed MDX files (for PR context)
29
changedFilepaths, err := github.GetChangedMDXFiles()
30
if err != nil {
31
- return nil, fmt.Errorf("could not get changed files")
+ return nil, fmt.Errorf("could not get changed files -- %s", err)
32
} else if len(changedFilepaths) > 0 {
33
var metadataForDocs []MetadataForDocs
34
for _, filepath := range changedFilepaths {
0 commit comments