From 65f306b6dd0b8a09b1b328b60fd3ac0569042bf1 Mon Sep 17 00:00:00 2001 From: MaksimZhukov <46996400+MaksimZhukov@users.noreply.github.com> Date: Wed, 5 Jul 2023 11:21:49 +0200 Subject: [PATCH] Fix a typo in the example about using the action outputs (#606) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8e9029d53..e09bc6232 100644 --- a/README.md +++ b/README.md @@ -165,16 +165,16 @@ jobs: pull-requests: write steps: - id: label-the-PR - uses: actions/labeler@v3 + uses: actions/labeler@v4 - id: run-frontend-tests - if: contains(fromJson(steps.label-the-PR.outputs.all-labels), 'frontend') + if: contains(steps.label-the-PR.outputs.all-labels, 'frontend') run: | echo "Running frontend tests..." # Put your commands for running frontend tests here - id: run-backend-tests - if: contains(fromJson(steps.label-the-PR.outputs.all-labels), 'backend') + if: contains(steps.label-the-PR.outputs.all-labels, 'backend') run: | echo "Running backend tests..." # Put your commands for running backend tests here