浏览代码

Use default for `trigger_labels` when absent

to allow configuration that contains only `trigger_files` field.

This should fix the parsing issue occurning after rust-lang/rust#91817
landed:

> Error: Malformed triagebot.toml in master branch.
> missing field trigger_labels for key autolabel at line 156 column 1
Tomasz Miąsko 3 年之前
父节点
当前提交
bc46c88719
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/config.rs

+ 1 - 0
src/config.rs

@@ -114,6 +114,7 @@ impl AutolabelConfig {
 
 #[derive(PartialEq, Eq, Debug, serde::Deserialize)]
 pub(crate) struct AutolabelLabelConfig {
+    #[serde(default)]
     pub(crate) trigger_labels: Vec<String>,
     #[serde(default)]
     pub(crate) exclude_labels: Vec<String>,