From 5781a01e1233ccc5daeaae71e6c51860eb614da6 Mon Sep 17 00:00:00 2001 From: Gary Guo Date: Tue, 7 Jan 2025 13:56:19 +0000 Subject: [PATCH 1/3] [ci] fix dependabot config The additional `reviewers` field is preventing dependabot from running. Signed-off-by: Gary Guo --- .github/dependabot.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 84b794f0f9bfb..97eed2830d406 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,12 +15,10 @@ updates: timezone: "America/Los_Angeles" commit-message: prefix: "[dependabot]" - reviewers: - - "lowRISC/ot-python-reviewers" # Ignore packages fetched from GitHub URLs. ignore: - dependency-name: "*fusesoc*" - dependency-name: "*edalize*" - dependency-name: "*chipwhisperer*" reviewers: - - "timothytrippel" + - "lowRISC/ot-python-reviewers" From 8a921cec0bec653070902458ca62d63cf97e9f0b Mon Sep 17 00:00:00 2001 From: Gary Guo Date: Tue, 7 Jan 2025 13:59:00 +0000 Subject: [PATCH 2/3] [ci] use UTC time for dependabot Signed-off-by: Gary Guo --- .github/dependabot.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 97eed2830d406..0bf22cfa03617 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,9 +10,8 @@ updates: # Updates are scheduled at the beginning of the work week. interval: "weekly" day: "monday" - time: "02:00" - # US Pacific Time - timezone: "America/Los_Angeles" + time: "10:00" + timezone: "Etc/UTC" commit-message: prefix: "[dependabot]" # Ignore packages fetched from GitHub URLs. From c4b8b67c9037c88e5bf3a60d4250efb3877b018e Mon Sep 17 00:00:00 2001 From: Gary Guo Date: Tue, 7 Jan 2025 14:01:45 +0000 Subject: [PATCH 3/3] [ci] allow dependabot to scan for Cargo and Actions dependencies Signed-off-by: Gary Guo --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0bf22cfa03617..d692f15ca4f25 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -21,3 +21,27 @@ updates: - dependency-name: "*chipwhisperer*" reviewers: - "lowRISC/ot-python-reviewers" + + - package-ecosystem: "cargo" + directory: "/third_party/rust" + schedule: + # Updates are scheduled at the beginning of the work week. + interval: "weekly" + day: "monday" + time: "10:00" + timezone: "Etc/UTC" + commit-message: + prefix: "[dependabot]" + reviewers: + - "lowRISC/ot-rust-reviewers" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Updates are scheduled at the beginning of the work week. + interval: "weekly" + day: "monday" + time: "10:00" + timezone: "Etc/UTC" + commit-message: + prefix: "[dependabot]"