From 88aee15ca4c76900a6fde49366a6269149f51450 Mon Sep 17 00:00:00 2001 From: Fabio Baltieri Date: Thu, 29 May 2025 14:04:45 +0000 Subject: [PATCH] ci: pr_metadata_check: run the script in unbuffered mode Makes it easier to debug since there's stuff handling race conditions now. Signed-off-by: Fabio Baltieri --- .github/workflows/pr_metadata_check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr_metadata_check.yml b/.github/workflows/pr_metadata_check.yml index 412903c2a03..3e862321e96 100644 --- a/.github/workflows/pr_metadata_check.yml +++ b/.github/workflows/pr_metadata_check.yml @@ -36,4 +36,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - ./scripts/ci/do_not_merge.py -p "${{ github.event.pull_request.number }}" + python -u scripts/ci/do_not_merge.py -p "${{ github.event.pull_request.number }}"