Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ on:
- dev
- demo
- hotfix
paths:
- 'src/backend/**'
- 'src/frontend/**'
- 'docker/**'
- '.github/workflows/build-docker-images.yml'
- '.github/workflows/build-docker.yml'
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
pull_request:
branches:
- main
Expand All @@ -18,6 +24,12 @@ on:
- ready_for_review
- reopened
- synchronize
paths:
- 'src/backend/**'
- 'src/frontend/**'
- 'docker/**'
- '.github/workflows/build-docker-images.yml'
- '.github/workflows/build-docker.yml'
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
merge_group:
workflow_dispatch:

Expand Down
24 changes: 13 additions & 11 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
name: Deploy-Test-Cleanup Pipeline

on:
workflow_run:
workflows: ["Build Docker and Optional Push"]
types:
- completed
branches:
- main
- dev
- demo
schedule:
- cron: '0 5,17 * * *' # Runs at 5:00 AM and 5:00 PM GMT
workflow_dispatch:
push:
branches:
- main
- dev
- demo
paths:
- 'infra/**'
- 'scripts/**'
- 'azure.yaml'
- '.github/workflows/deploy.yml'
schedule:
- cron: '0 5,17 * * *' # Runs at 5:00 AM and 5:00 PM GMT
workflow_dispatch:
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.

env:
GPT_MIN_CAPACITY: 150
Expand Down
16 changes: 15 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
name: PyLint

on: [push]
on:
push:
paths:
- '**/*.py'
- '**/requirements.txt'
- '**/pyproject.toml'
- '**/.flake8'
- '.github/workflows/pylint.yml'
pull_request:
paths:
- '**/*.py'
- '**/requirements.txt'
- '**/pyproject.toml'
- '**/.flake8'
- '.github/workflows/pylint.yml'

jobs:
lint:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ on:
- main
- dev
- demo
paths:
- 'src/backend/**/*.py'
- 'src/tests/backend/**'
- '.github/workflows/test.yml'
- 'src/backend/requirements.txt'
- 'src/backend/pyproject.toml'
Comment on lines +9 to +14
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The path filter is missing 'src/frontend/requirements.txt'. Looking at line 90 of this workflow, the test job installs dependencies from 'src/frontend/requirements.txt', so changes to that file should trigger the workflow to ensure tests run with updated frontend dependencies.

Copilot uses AI. Check for mistakes.
pull_request:
types:
- opened
Expand All @@ -16,6 +22,12 @@ on:
- main
- dev
- demo
paths:
- 'src/backend/**/*.py'
- 'src/tests/backend/**'
- '.github/workflows/test.yml'
- 'src/backend/requirements.txt'
- 'src/backend/pyproject.toml'
Comment on lines +25 to +30
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The path filter is missing 'src/frontend/requirements.txt'. Looking at line 90 of this workflow, the test job installs dependencies from 'src/frontend/requirements.txt', so changes to that file should trigger the workflow to ensure tests run with updated frontend dependencies.

Copilot uses AI. Check for mistakes.

jobs:
# frontend_tests:
Expand Down