Skip to content

Commit

Permalink
chore: fix condition evalution for steps in release action
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanBredehoft committed Oct 4, 2023
1 parent e04c75a commit ad2d7ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ jobs:
- name: Get all changed files from main in PR
id: changed-files-in-pr
if: |
env.IS_PR
fromJSON(env.IS_PR)
&& steps.install-deps.outcome == 'success'
&& steps.make-pcc.outcome == 'success'
&& !cancelled()
Expand Down Expand Up @@ -705,7 +705,7 @@ jobs:
# comment is published in the PR and all flaky tests that initially failed are listed
- name: Warn PR with flaky tests
uses: marocchino/sticky-pull-request-comment@efaaab3fd41a9c3de579aba759d2552635e590fd
if: steps.pytest_regular.outcome == 'success' && env.FAILED_TESTS_ARE_FLAKY && !cancelled()
if: steps.pytest_regular.outcome == 'success' && fromJSON(env.FAILED_TESTS_ARE_FLAKY) && !cancelled()
with:
header: flaky-test
recreate: true
Expand Down

0 comments on commit ad2d7ce

Please sign in to comment.