Skip to content

Commit c7e3eeb

Browse files
committed
Tentative: made if-statement one-liner
1 parent d95cf2e commit c7e3eeb

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/build_test_push.yaml

+1-5
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,7 @@ jobs:
7878
build-test-push-x86:
7979
runs-on: ubuntu-latest
8080
needs: [check-git]
81-
if: |
82-
${{ !inputs.skip_test || (
83-
github.repository == 'logicalclocks/rondb-docker' &&
84-
(startsWith(github.ref_name, 'release-') || github.ref_name == 'main')
85-
)}}
81+
if: ${{ !inputs.skip_test || (github.repository == 'logicalclocks/rondb-docker' && (startsWith(github.ref_name, 'release-') || github.ref_name == 'main'))}}
8682
steps:
8783
- uses: actions/checkout@v4
8884

0 commit comments

Comments
 (0)