Skip to content

Commit 19836d5

Browse files
Merge pull request #84 from microsoft/dev
chore: Merge Dev to Main
2 parents 5feae19 + 4f95a37 commit 19836d5

3 files changed

Lines changed: 30 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,21 @@ on:
55
- main
66
- dev
77
- demo
8+
paths:
9+
- 'infra/**'
10+
- 'azure.yaml'
11+
- 'azure_custom.yaml'
12+
- 'scripts/**'
13+
- '.github/workflows/ci.yml'
814
pull_request:
915
branches:
1016
- dev
17+
paths:
18+
- 'infra/**'
19+
- 'azure.yaml'
20+
- 'azure_custom.yaml'
21+
- 'scripts/**'
22+
- '.github/workflows/ci.yml'
1123
schedule:
1224
- cron: '0 9,21 * * *' # Runs at 9:00 AM and 9:00 PM GMT
1325
workflow_dispatch: # Allow manual triggering

.github/workflows/docker-build-and-push.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,19 @@ name: Build and Push Docker Images
33
on:
44
push:
55
branches: [main, dev, demo, hotfix]
6+
paths:
7+
- 'src/backend-api/**'
8+
- 'src/processor/**'
9+
- 'src/frontend/**'
10+
- '.github/workflows/docker-build-and-push.yml'
611
pull_request:
712
branches: [main, dev, demo, hotfix]
813
types: [opened, ready_for_review, reopened, synchronize]
14+
paths:
15+
- 'src/backend-api/**'
16+
- 'src/processor/**'
17+
- 'src/frontend/**'
18+
- '.github/workflows/docker-build-and-push.yml'
919
workflow_dispatch:
1020

1121
jobs:

.github/workflows/pylint.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
name: PyLint
22

3-
on: [push]
3+
on:
4+
push:
5+
paths:
6+
- '**.py'
7+
- '**/pyproject.toml'
8+
- '**/requirements.txt'
9+
- '.flake8'
10+
- '.github/workflows/pylint.yml'
411

512
jobs:
613
build:

0 commit comments

Comments
 (0)