We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1072ae6 commit 241fbe6Copy full SHA for 241fbe6
.github/workflows/build_test_push.yaml
@@ -55,6 +55,12 @@ env:
55
jobs:
56
check-git:
57
runs-on: ubuntu-latest
58
+ # This will block all other jobs from running due to "needs"
59
+ if: |
60
+ ${{ inputs.skip_test == 'false' || (
61
+ github.repository == 'logicalclocks/rondb-docker' &&
62
+ (startsWith(github.ref_name, 'release-') || github.ref_name == 'main')
63
+ )}}
64
outputs:
65
is_highest_release: ${{ steps.is_highest_release.outputs.is_highest }}
66
steps:
0 commit comments