Skip to content

Commit

Permalink
chore: never skip main ci runs (#1108)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey authored Mar 29, 2021
1 parent b33e109 commit b2d2c91
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 @@ -17,7 +17,7 @@ jobs:

ci:
needs: should-skip
if: ${{needs.should-skip.outputs.should-skip-job != 'true'}}
if: ${{needs.should-skip.outputs.should-skip-job != 'true' || github.ref == 'refs/heads/main'}}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit b2d2c91

Please sign in to comment.