From 55bdc3012beb2cdcf24ab5e0e7bd3ad641264186 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 10 Jun 2022 15:13:19 +0200 Subject: [PATCH] Fix passing secrets to callable-qa.yml --- .github/workflows/qa.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index f7a20c0e..3c760a9e 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -11,6 +11,7 @@ jobs: call-qa: uses: symfony/recipes/.github/workflows/callable-qa.yml@main with: - token: ${{ secrets.BOT_TOKEN }} contrib: true find_yaml: -not -wholename 'codeception/codeception/*/tests/*' -not -wholename 'codeception/codeception/*/codeception.yml' + secrets: + token: ${{ secrets.BOT_TOKEN }}