From eb6f51c3524a5fbc6f83fd6d3e40ec5fa35839e1 Mon Sep 17 00:00:00 2001 From: Simon Bernard Date: Thu, 25 Aug 2022 17:10:12 +0200 Subject: [PATCH] Add "write checks" permissions for test reports github action --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 48e1b0f38a..4062da67a4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,9 +10,12 @@ on: jobs: build: - # To be able to write/remove comments on PR + # To be able : + # - to write/remove comments on PR, + # - to create checks for Test Report. permissions: pull-requests: write + checks: write name : Code Check if: github.event.pull_request.draft == false