Skip to content

Commit

Permalink
ci: replace github output with github env var
Browse files Browse the repository at this point in the history
  • Loading branch information
necipallef committed Sep 25, 2024
1 parent 4f1ed3e commit 8a10f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e_test_for_prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo NEED_TO_RUN_TESTS=${needToRunTests} >> $GITHUB_ENV
run-e2e-for-topic-branch:
needs: check-changed-files
if: ${{ env.NEED_TO_RUN_TESTS }} == 'true'
if: ${{ env.NEED_TO_RUN_TESTS == 'true' }}
permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
Expand Down

0 comments on commit 8a10f10

Please sign in to comment.