From 192038034483b87414d2e08160e56d6e65de2e52 Mon Sep 17 00:00:00 2001 From: lukaszcl <120112546+lukaszcl@users.noreply.github.com> Date: Tue, 3 Dec 2024 13:53:05 +0100 Subject: [PATCH] Fix all tests path --- .github/workflows/flakeguard.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flakeguard.yml b/.github/workflows/flakeguard.yml index f5569585557..0b7b2dafa31 100644 --- a/.github/workflows/flakeguard.yml +++ b/.github/workflows/flakeguard.yml @@ -418,7 +418,7 @@ jobs: script: | const fs = require('fs'); const prNumber = context.payload.pull_request.number; - const commentBody = fs.readFileSync('../all_tests.md', 'utf8'); + const commentBody = fs.readFileSync('all_tests.md', 'utf8'); await github.rest.issues.createComment({ owner: context.repo.owner,