Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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'
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'
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'
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
Outdated
schedule:
- cron: '0 5,17 * * *' # Runs at 5:00 AM and 5:00 PM GMT
workflow_dispatch:

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
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ on:
- main
- dev
- demo
paths:
- 'src/backend/**/*.py'
- 'src/tests/backend/**'
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
- '.github/workflows/test.yml'
- 'src/backend/requirements.txt'
- 'src/frontend/requirements.txt'
- 'src/backend/pyproject.toml'
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
pull_request:
types:
- opened
Expand All @@ -16,6 +23,13 @@ on:
- main
- dev
- demo
paths:
- 'src/backend/**/*.py'
- 'src/tests/backend/**'
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
- '.github/workflows/test.yml'
- 'src/backend/requirements.txt'
- 'src/frontend/requirements.txt'
- 'src/backend/pyproject.toml'
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.

jobs:
# frontend_tests:
Expand Down