Skip to content

Commit 9746070

Browse files
committed
fix: properly place condition in CI job
1 parent f606c5b commit 9746070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ env:
1919

2020
jobs:
2121
# avoid double CI runs on push and PR, from https://github.com/orgs/community/discussions/57827
22-
if: github.event_name != 'push' || github.event.push.head.repo.full_name != github.event.push.base.repo.full_name
2322
build:
23+
if: github.event_name != 'push' || github.event.push.head.repo.full_name != github.event.push.base.repo.full_name
2424
strategy:
2525
matrix:
2626
os: [ubuntu-latest, macos-latest, windows-latest]

0 commit comments

Comments
 (0)