Skip to content

Commit

Permalink
Merge pull request #1376 from cross-rs/rip-bors
Browse files Browse the repository at this point in the history
fix build in merge queue
  • Loading branch information
Emilgardis authored Nov 18, 2023
2 parents cd1f594 + 9af5dcc commit 0467f6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
name: target (${{ matrix.pretty }},${{ matrix.os }})
runs-on: ${{ matrix.os }}
needs: [shellcheck, test, generate-matrix, check]
if: github.event_name == 'push' && needs.generate-matrix.outputs.matrix != '{}' && needs.generate-matrix.outputs.matrix != '[]' && needs.generate-matrix.outputs.matrix != ''
if: (github.event_name == 'push' || github.event_name == 'merge_group') && needs.generate-matrix.outputs.matrix != '{}' && needs.generate-matrix.outputs.matrix != '[]' && needs.generate-matrix.outputs.matrix != ''
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit 0467f6f

Please sign in to comment.