Skip to content

Commit bcb5ec3

Browse files
authored
Merge branch 'main' into fix-tests
2 parents 1751ed2 + f506ef4 commit bcb5ec3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ jobs:
1717
publish:
1818
runs-on: ubuntu-latest
1919
env:
20-
GH_TOKEN: ${{ github.token }}
20+
GITHUB_TOKEN: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
2121
VERSION_CHANGE: ${{ github.event.inputs.version-change }}
2222
RELEASE_CANDIDATE: ${{ github.event.inputs.release-candidate }}
2323
VERSION_FILE: src/Version.php
2424
CHANGELOG_FILE: CHANGELOG.md
2525
steps:
2626
- uses: actions/checkout@v3
27+
with:
28+
token: ${{ secrets.YDB_PLATFORM_BOT_TOKEN_REPO }}
2729
- run: |
2830
CHANGELOG=$(cat $CHANGELOG_FILE | sed -e '/^## */,$d');
2931
MAJOR=$(cat $VERSION_FILE | grep "const MAJOR" | sed -e 's/^.*\ \(=\ \)*\(\"\)*\([0-9]*\)\(\"\)*.*/\3/g');

src/Table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ public function retrySession(Closure $userFunc, bool $idempotent = false, RetryP
481481

482482
}
483483

484-
public function retryTransaction(Closure $userFunc, bool $idempotent = null, RetryParams $params = null, array $options){
484+
public function retryTransaction(Closure $userFunc, bool $idempotent = null, RetryParams $params = null, array $options = []){
485485
if ($options == null) {
486486
$options = [];
487487
}

0 commit comments

Comments
 (0)