Skip to content

Commit 90a49af

Browse files
authored
refactor(workflows): Simplify workflow names and remove unnecessary p… (#199)
…ush triggers
1 parent 17ea0df commit 90a49af

File tree

4 files changed

+6
-22
lines changed

4 files changed

+6
-22
lines changed

.github/workflows/autofix.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: autofix.ci
22

33
on:
44
pull_request:
5-
push:
65
branches: [ "main" ]
76

87
permissions:

.github/workflows/backend-ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
name: Backend CI
1+
name: backend
22
on:
3-
push:
4-
branches: [ main ]
5-
paths:
6-
- 'backend/**'
7-
- 'codefox-common/**'
83
pull_request:
94
branches: [ main ]
105
paths:
@@ -13,7 +8,7 @@ on:
138
workflow_dispatch:
149
jobs:
1510
build:
16-
name: Install and Build Backend
11+
name: build
1712
runs-on: ubuntu-latest
1813

1914
steps:

.github/workflows/frontend-ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
name: Frontend CI
1+
name: frontend
22
on:
3-
push:
4-
branches: [ main ]
5-
paths:
6-
- 'frontend/**'
7-
- 'codefox-common/**'
83
pull_request:
94
branches: [ main ]
105
paths:
@@ -13,7 +8,7 @@ on:
138
workflow_dispatch:
149
jobs:
1510
build:
16-
name: Install and Build Frontend
11+
name: build
1712
runs-on: ubuntu-latest
1813

1914
steps:

.github/workflows/llm-server.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
1-
name: LLM Server CI
1+
name: llm
22
on:
3-
push:
4-
branches: [ main ]
5-
paths:
6-
- 'llm-server/**'
7-
- 'codefox-common/**'
83
pull_request:
94
branches: [ main ]
105
paths:
@@ -13,7 +8,7 @@ on:
138
workflow_dispatch:
149
jobs:
1510
build:
16-
name: Install and Build LLM Server
11+
name: build
1712
runs-on: ubuntu-latest
1813

1914
steps:

0 commit comments

Comments
 (0)