Skip to content

Commit cfbca84

Browse files
authored
Merge pull request #774 from caic99/develop
Build: Only trigger some GitHub CI running on main repo
2 parents a4f343e + ccac52d commit cfbca84

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/dynamic.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Dynamic Analysis
22

33
on:
44
schedule:
5-
- cron: '0 20 * * *'
5+
- cron: '0 3 * * *'
66
workflow_dispatch:
77
inputs:
88
name:
@@ -14,6 +14,7 @@ jobs:
1414
test:
1515
name: Do the job on the runner
1616
runs-on: self-hosted
17+
if: github.repository_owner == 'deepmodeling'
1718
container: ghcr.io/deepmodeling/abacus-development-kit:gnu
1819
steps:
1920
- name: Checkout

.github/workflows/static.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
clang-tidy:
88
runs-on: self-hosted
9+
if: github.repository_owner == 'deepmodeling'
910
container: ghcr.io/deepmodeling/abacus-development-kit:gnu
1011
steps:
1112
- name: Checkout Pull Request

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ on:
55
branches:
66
- develop
77
- tryEigen
8-
jobs:
98

9+
jobs:
1010
test:
1111
name: Do the job on the runner
1212
runs-on: self-hosted
13+
if: github.repository_owner == 'deepmodeling'
1314
container: ghcr.io/deepmodeling/abacus-development-kit:gnu
1415
steps:
1516
- name: Checkout

0 commit comments

Comments
 (0)