Skip to content

Commit

Permalink
fix: fix steps
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaevg committed Mar 10, 2024
1 parent 8265d9c commit f136130
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
id: flake
uses: ./
with:
max_attempts: 1
max_attempts: 2
substrings_indicating_flaky_execution: |
flake_error
command: |
Expand All @@ -57,7 +57,7 @@ jobs:
&& grep 11 /tmp/retry_github_action_happy
unhappy_integration_tests:
name: Run Integration Tests with commands that succeed
name: Run Integration Tests with commands that fail
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -79,7 +79,7 @@ jobs:

- name: Write success if step failed
id: success_if_failed
if: ${{ failure() }}
if: steps.failing_command.outcome != 'success'
run: touch /tmp/retry_github_action_unhappy_success

- name: Exit
Expand Down

0 comments on commit f136130

Please sign in to comment.