From cb0e88182ce0581efeb3169a4e368858dbc37281 Mon Sep 17 00:00:00 2001 From: Pulkit Aggarwal Date: Tue, 1 Jul 2025 09:04:15 +0000 Subject: [PATCH 1/3] chore: update the source path in owlbot.yaml --- .github/.OwlBot.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/.OwlBot.yaml b/.github/.OwlBot.yaml index 837bf4fd6..8c5e3fa69 100644 --- a/.github/.OwlBot.yaml +++ b/.github/.OwlBot.yaml @@ -19,7 +19,7 @@ deep-remove-regex: - /owl-bot-staging deep-copy-regex: - - source: /google/storage/v2/storage-v2-py/(.*) + - source: /google/storage/(v2)/storage-v2-py/(.*) dest: /owl-bot-staging/$1/$2 begin-after-commit-hash: 6acf4a0a797f1082027985c55c4b14b60f673dd7 From 17248897a8b35d9dacefd662bea6e5be47a244b6 Mon Sep 17 00:00:00 2001 From: Pulkit Aggarwal Date: Tue, 1 Jul 2025 09:20:13 +0000 Subject: [PATCH 2/3] add comments --- .github/.OwlBot.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/.OwlBot.yaml b/.github/.OwlBot.yaml index 8c5e3fa69..67768efb5 100644 --- a/.github/.OwlBot.yaml +++ b/.github/.OwlBot.yaml @@ -18,9 +18,12 @@ docker: deep-remove-regex: - /owl-bot-staging +# In source, we've used two capturing groups (v2) and (.*) to match the version +# and the directory path. +# In dest, we use $1 to refer to the first capturing group (v2) and $2 to refer +# to the second capturing group (directory path). deep-copy-regex: - source: /google/storage/(v2)/storage-v2-py/(.*) dest: /owl-bot-staging/$1/$2 begin-after-commit-hash: 6acf4a0a797f1082027985c55c4b14b60f673dd7 - From 488ca90cf9b9f23ddb59379f20cadc50a1ed0ec2 Mon Sep 17 00:00:00 2001 From: Pulkit Aggarwal Date: Thu, 3 Jul 2025 07:22:09 +0000 Subject: [PATCH 3/3] Trigger CI