Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
joshjohanning authored Oct 10, 2024
1 parent fda1bcd commit bed51ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/dynamic-matrix-subvalues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,10 @@ jobs:
env:
MATRIX_CONTEXT: ${{ toJson(matrix) }}
run: echo "$MATRIX_CONTEXT"
- if: ${{ matrix.repositories.name == 'repo2' }}
run: sleep 10s && exit 1
- name: create failures sometimes
run: |
run: |
milliseconds=$(date +%s%N | cut -b1-13)
if (( milliseconds % 2 == 0 )); then
# exit 1
Expand All @@ -189,7 +191,7 @@ jobs:
runs-on: ubuntu-latest
if: failure()
steps:
- run: echo "${{ needs.run-matrix-1.outputs.is-failure }}
- run: echo "${{ needs.run-matrix-1.outputs.is-failure }}""

# post:
# if: always()
Expand Down

0 comments on commit bed51ed

Please sign in to comment.