Skip to content

Commit

Permalink
Fix a typo in the example about using the action outputs (#606)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaksimZhukov committed Jul 5, 2023
1 parent b669025 commit 65f306b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 65f306b

Please sign in to comment.