From ba9a622711972c19fba9e16f042a37787d7681b0 Mon Sep 17 00:00:00 2001 From: Moritz Date: Thu, 28 Nov 2024 15:24:29 +0100 Subject: [PATCH] pritn all labels --- .github/workflows/ecosystem_test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ecosystem_test.yaml b/.github/workflows/ecosystem_test.yaml index dddd5715..c1690c94 100644 --- a/.github/workflows/ecosystem_test.yaml +++ b/.github/workflows/ecosystem_test.yaml @@ -21,14 +21,14 @@ jobs: with: channel: main - - run: echo ${{ github.event.pull_request.labels }} + - run: echo ${{ toJSON(github.event.pull_request.labels.*.name) }} - run: dart pub get working-directory: pkgs/quest - name: Update package and test run: | - dart run pkgs/quest/bin/quest.dart ${{ inputs.repos_file }} ${{ github.event.pull_request.labels }} + dart run pkgs/quest/bin/quest.dart ${{ inputs.repos_file }} ${{ toJSON(github.event.pull_request.labels.*.name) }} env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}