Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b2cbb99
chore: add librarian.yaml
JoeWang1127 Aug 17, 2026
bd2831e
Merge branch 'main' into chore/test-gen
JoeWang1127 Aug 18, 2026
e5ebb82
Merge branch 'main' into chore/test-gen
JoeWang1127 Aug 18, 2026
fbc62bc
Merge branch 'main' into chore/test-gen
JoeWang1127 Aug 19, 2026
5f4bafa
update config
JoeWang1127 Aug 19, 2026
c764fad
update config
JoeWang1127 Aug 20, 2026
11592b1
Merge branch 'main' into chore/test-gen
JoeWang1127 Aug 20, 2026
b748bac
update config
JoeWang1127 Aug 20, 2026
cdad748
Merge branch 'main' into chore/test-gen
JoeWang1127 Aug 20, 2026
96e63e2
update
JoeWang1127 Aug 20, 2026
e5b84c1
Merge branch 'main' into chore/test-gen
JoeWang1127 Aug 21, 2026
6a8b74b
chore: update owlbot
JoeWang1127 Aug 21, 2026
7db509b
format
JoeWang1127 Aug 21, 2026
f026470
Merge branch 'chore/update-owlbot' into chore/test-gen
JoeWang1127 Aug 21, 2026
34f8331
chore: updatre owlbot.py
JoeWang1127 Aug 21, 2026
b959983
format
JoeWang1127 Aug 21, 2026
192cc22
Merge branch 'chore/format-workflows' into chore/test-gen
JoeWang1127 Aug 21, 2026
863d3f8
chore: rm obsolete samples
JoeWang1127 Aug 21, 2026
71082e4
update config
JoeWang1127 Aug 21, 2026
499b94d
chore: update owlbot.py
JoeWang1127 Aug 21, 2026
91fddfa
Merge branch 'chore/update-oslogin' into chore/test-gen
JoeWang1127 Aug 21, 2026
59ddd9a
merge main
JoeWang1127 Aug 23, 2026
dc46057
Merge branch 'main' into chore/update-oslogin
JoeWang1127 Aug 23, 2026
a0c7ce7
update library
JoeWang1127 Aug 23, 2026
3cee950
Merge branch 'chore/update-oslogin' into chore/test-gen
JoeWang1127 Aug 23, 2026
be0aa91
update config
JoeWang1127 Aug 24, 2026
0466f57
update config
JoeWang1127 Aug 24, 2026
c547d0c
chore: format bigtable
JoeWang1127 Aug 24, 2026
6c345e1
Merge branch 'chore/format-bigtable' into chore/test-gen
JoeWang1127 Aug 24, 2026
38da60b
update config
JoeWang1127 Aug 24, 2026
b47e72d
update config
JoeWang1127 Aug 24, 2026
dae1da8
restore
JoeWang1127 Aug 24, 2026
3415300
restore
JoeWang1127 Aug 24, 2026
936bef6
restore
JoeWang1127 Aug 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Bigtable/.OwlBot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ deep-copy-regex:
- source: /google/bigtable/(v2)/.*-php/(.*)
dest: /owl-bot-staging/Bigtable/$1/$2
- source: /google/bigtable/admin/(v2)/.*-php/(.*)
dest: /owl-bot-staging/Bigtable/$1/Admin/$2
dest: /owl-bot-staging/Bigtable/Admin/$1/$2
api-name: Bigtable
15 changes: 14 additions & 1 deletion Bigtable/owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
)

# First copy the Bigtable Admin
admin_library = Path(f"../{php.STAGING_DIR}/Bigtable/v2/Admin").resolve()
admin_library = Path(f"../{php.STAGING_DIR}/Bigtable/Admin/v2").resolve()

# copy gapic src, samples, and tests
s.move(admin_library / f'src', 'src/Admin', merge=preserve_copyright_year)
Expand All @@ -54,3 +54,16 @@
s.move(admin_library / f'proto/src/Google/Cloud/Bigtable', f'src/', merge=preserve_copyright_year)
s.move(admin_library / f'proto/src/GPBMetadata/Google/Bigtable', f'metadata/', merge=preserve_copyright_year)

# format generated clients
subprocess.run([
'npm',
'exec',
'--yes',
'--package=@prettier/plugin-php@^0.19',
'--',
'prettier',
'**/Client/*',
'--write',
'--parser=php',
'--single-quote',
'--print-width=120'])
Loading