Skip to content

Commit 7c1a91a

Browse files
committed
only run workflow on my github repo
1 parent a51817b commit 7c1a91a

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

.github/workflows/compile-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
check-flexis:
9+
if: github.repository_owner == 'akshit-sharma' && github.event_name != 'pull_request'
910
runs-on: ubuntu-latest
1011

1112
steps:

.github/workflows/datagraph-download.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
datagraph-download:
9+
if: github.repository_owner == 'akshit-sharma' && github.event_name != 'pull_request'
910
runs-on: ubuntu-latest
1011

1112
steps:

.github/workflows/executable-check.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
compile-flexis:
9+
if: github.repository_owner == 'akshit-sharma' && github.event_name != 'pull_request'
910
runs-on: ubuntu-latest
1011
steps:
1112
- uses: actions/checkout@v4
@@ -30,6 +31,7 @@ jobs:
3031
path: ./build/release/bin/flexis
3132

3233
download-datasets:
34+
if: github.repository_owner == 'akshit-sharma' && github.event_name != 'pull_request'
3335
runs-on: ubuntu-latest
3436
steps:
3537
- uses: actions/checkout@v4
@@ -52,6 +54,7 @@ jobs:
5254
path: ./data/processed/*.vf3.bin
5355

5456
run-flexis:
57+
if: github.repository_owner == 'akshit-sharma' && github.event_name != 'pull_request'
5558
runs-on: ubuntu-latest
5659
needs: [compile-flexis, download-datasets]
5760
steps:

0 commit comments

Comments
 (0)