Skip to content

Commit 964c1f1

Browse files
committed
fix workflow triggering condition
1 parent 6b71c60 commit 964c1f1

8 files changed

+71
-1
lines changed

.github/workflows/codeflash-optimize.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
name: CodeFlash
22

33
on:
4+
# For specific file changes
45
pull_request_target:
56
paths:
6-
- "**"
7+
- '.github/workflows/**'
8+
9+
# For all other changes
10+
pull_request:
11+
paths-ignore:
12+
- '.github/workflows/**'
13+
714
workflow_dispatch:
815

916
concurrency:

.github/workflows/end-to-end-test-bubblesort-pytest-no-git.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
name: end-to-end-test
22

33
on:
4+
# For specific file changes
45
pull_request_target:
6+
paths:
7+
- '.github/workflows/**'
8+
9+
# For all other changes
10+
pull_request:
11+
paths-ignore:
12+
- '.github/workflows/**'
13+
514
workflow_dispatch:
615

716
jobs:

.github/workflows/end-to-end-test-bubblesort-unittest.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
name: end-to-end-test
22

33
on:
4+
# For specific file changes
45
pull_request_target:
6+
paths:
7+
- '.github/workflows/**'
8+
9+
# For all other changes
10+
pull_request:
11+
paths-ignore:
12+
- '.github/workflows/**'
13+
514
workflow_dispatch:
615

716
jobs:

.github/workflows/end-to-end-test-coverage.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
name: Coverage E2E
22

33
on:
4+
# For specific file changes
45
pull_request_target:
6+
paths:
7+
- '.github/workflows/**'
8+
9+
# For all other changes
10+
pull_request:
11+
paths-ignore:
12+
- '.github/workflows/**'
13+
514
workflow_dispatch:
615

716
jobs:

.github/workflows/end-to-end-test-futurehouse.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
name: end-to-end-test
22

33
on:
4+
# For specific file changes
45
pull_request_target:
6+
paths:
7+
- '.github/workflows/**'
8+
9+
# For all other changes
10+
pull_request:
11+
paths-ignore:
12+
- '.github/workflows/**'
13+
514
workflow_dispatch:
615

716
jobs:

.github/workflows/end-to-end-test-init-optim.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
name: end-to-end-test
22

33
on:
4+
# For specific file changes
45
pull_request_target:
6+
paths:
7+
- '.github/workflows/**'
8+
9+
# For all other changes
10+
pull_request:
11+
paths-ignore:
12+
- '.github/workflows/**'
13+
514
workflow_dispatch:
615

716
jobs:

.github/workflows/end-to-end-test-tracer-replay.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
name: end-to-end-test
22

33
on:
4+
# For specific file changes
45
pull_request_target:
6+
paths:
7+
- '.github/workflows/**'
8+
9+
# For all other changes
10+
pull_request:
11+
paths-ignore:
12+
- '.github/workflows/**'
13+
514
workflow_dispatch:
615

716
jobs:

.github/workflows/end-to-end-topological-sort-test.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
name: end-to-end-test
22

33
on:
4+
# For specific file changes
45
pull_request_target:
6+
paths:
7+
- '.github/workflows/**'
8+
9+
# For all other changes
10+
pull_request:
11+
paths-ignore:
12+
- '.github/workflows/**'
13+
514
workflow_dispatch:
615

716
jobs:

0 commit comments

Comments
 (0)