Skip to content

Commit f1a8a68

Browse files
committed
Fix condition
1 parent 1deec3b commit f1a8a68

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/auto-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
# Run workflow only on main repo
11-
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
11+
if: ${{ github.repository == 'Winds-Studio/Leaf' }}
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Leaf repository

.github/workflows/build-1218.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
build:
1010
# Run workflow only on main repo
11-
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
11+
if: ${{ github.repository == 'Winds-Studio/Leaf' }}
1212
runs-on: blacksmith-8vcpu-ubuntu-2204
1313
env:
1414
BUILD_NUMBER: ${{ github.run_number }}

.github/workflows/build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
# Run workflow only on main repo
10-
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
10+
if: ${{ github.repository == 'Winds-Studio/Leaf' }}
1111
runs-on: blacksmith-8vcpu-ubuntu-2204
1212
env:
1313
GRAALVM_ARGS: "-Dgraal.CompilerConfiguration=enterprise -Dgraal.UsePriorityInlining=true -Dgraal.Vectorization=true -Dgraal.OptDuplication=true --add-modules jdk.incubator.vector"

.github/workflows/publish-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
build:
99
# Run workflow only on main repo
10-
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
10+
if: ${{ github.repository == 'Winds-Studio/Leaf' }}
1111
runs-on: ubuntu-latest
1212
env:
1313
BUILD_NUMBER: ${{ github.run_number }}

0 commit comments

Comments
 (0)