We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3c9e31 commit eb00ef2Copy full SHA for eb00ef2
1 file changed
internal/librarian/state.go
@@ -76,6 +76,10 @@ func parseLibrarianState(path, source string) (*config.LibrarianState, error) {
76
func parseLibrarianConfig(path string) (*config.LibrarianConfig, error) {
77
bytes, err := os.ReadFile(path)
78
if err != nil {
79
+ if errors.Is(err, os.ErrNotExist) {
80
+ slog.Info("config.yaml not found, proceeding")
81
+ return nil, nil
82
+ }
83
return nil, err
84
}
85
var lc config.LibrarianConfig
0 commit comments