We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b9a2c commit a65f45cCopy full SHA for a65f45c
1 file changed
.github/workflows/ci.yml
@@ -115,7 +115,7 @@ jobs:
115
script: |
116
const fs = require('fs');
117
const output = fs.readFileSync('/tmp/phpunit-output.txt', 'utf8');
118
- const body = `## PHPUnit failure: PHP ${{ matrix.php-version }}, ClickHouse ${{ matrix.clickhouse-version }}\n\`\`\`\n${output.slice(-3000)}\n\`\`\``;
+ const body = `## PHPUnit failure: PHP ${{ matrix.php-version }}, ClickHouse ${{ matrix.clickhouse-version }}\n\`\`\`\n${output.slice(0, 10000)}\n\`\`\``;
119
await github.rest.issues.createComment({
120
owner: context.repo.owner,
121
repo: context.repo.repo,
0 commit comments