Skip to content

Commit 551fbbb

Browse files
authored
feat: add cicd test for qa branch (#1011)
1 parent c18df5f commit 551fbbb

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/build_package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build Package
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "master", "qa" ]
66

77
jobs:
88
build:

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build and deploy camel documents
22
on:
33
push:
4-
branches: [ "master" ]
4+
branches: [ "master", "qa" ]
55
workflow_dispatch:
66
permissions:
77
contents: write

.github/workflows/pre_commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Pre Commit Check
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: [ "master", "qa" ]
66
pull_request:
7-
branches: [ "master" ]
7+
branches: [ "master", "qa" ]
88

99
jobs:
1010
pre-commit:

.github/workflows/pytest_apps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Pytest Gradio Apps and Examples
55

66
on:
77
push:
8-
branches: [ "master" ]
8+
branches: [ "master", "qa" ]
99
pull_request:
10-
branches: [ "master" ]
10+
branches: [ "master", "qa" ]
1111

1212
permissions:
1313
contents: read

.github/workflows/pytest_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Pytest Camel package
55

66
on:
77
push:
8-
branches: [ "master" ]
8+
branches: [ "master", "qa" ]
99
pull_request:
10-
branches: [ "master" ]
10+
branches: [ "master", "qa" ]
1111

1212
permissions:
1313
contents: read

0 commit comments

Comments
 (0)