Skip to content

Commit 7b626b8

Browse files
ParthS007pamfilos
authored andcommitted
devops: update workflows for branch next
Signed-off-by: Parth Shandilya <[email protected]>
1 parent cba1d1a commit 7b626b8

7 files changed

+11
-10
lines changed

.github/workflows/e2e-workflow-server.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: E2E - Server changes with python package installations
22

33
on:
44
pull_request:
5-
branches: [master, ant, 'upgrade-3']
5+
branches: [master, ant, next]
66
paths:
77
- "setup.py"
88
- "requirements.txt"

.github/workflows/e2e-workflow-ui.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches: uitest
55
pull_request:
6-
branches: master
6+
branches: [master, next]
77
paths:
88
- "ui/**"
99
- ".github/workflows/ui-test.yml"

.github/workflows/e2e-workflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
- master
66
- qa
77
- production
8-
- 'upgrade-3'
9-
- 'cap-next-cloud'
8+
- next
109
pull_request:
1110
branches:
1211
- qa
1312
- production
13+
- next
1414
jobs:
1515
Cypress:
1616
name: Cypress

.github/workflows/lint-commit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Lint Commit
22

33
on:
44
pull_request:
5-
branches: [ master ]
5+
branches: [ master, next ]
66

77
jobs:
88
lint-shellcheck:

.github/workflows/lint-push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Lint Source
22

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

77
jobs:
88
lint-shellcheck:

.github/workflows/ui-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: UI test
22
on:
33
push:
4-
branches: [master]
4+
branches: [master, next]
55
paths:
66
- "ui/**"
77
- ".github/workflows/ui-test.yml"
88
pull_request:
9-
branches: [master]
9+
branches: [master, next]
1010
paths:
1111
- "ui/**"
1212
- ".github/workflows/ui-test.yml"

.github/workflows/web-api.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: Backend tests
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ master, next ]
66
paths-ignore:
77
- 'ui/**'
88
pull_request:
9-
branches: [ master ]
9+
branches: [ master, next ]
1010
paths-ignore:
1111
- 'ui/**'
1212

@@ -23,6 +23,7 @@ jobs:
2323

2424
- name: Run darker
2525
run: |
26+
pip install flake8
2627
pip install darker[isort]
2728
darker . --check -i -L flake8
2829

0 commit comments

Comments
 (0)