Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
- main # Adjust this to the branch you want to trigger the deployment on
- dev
- demo
paths:
- 'infra/**'
- 'App/**'
- 'Deployment/**'
- 'azure.yaml'
Comment thread
Harmanpreet-Microsoft marked this conversation as resolved.
schedule:
- cron: "0 10,22 * * *" # Runs at 10:00 AM and 10:00 PM GMT

Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,26 @@ name: "CodeQL Advanced"
on:
push:
branches: [ "main", "dev", "demo" ]
paths:
- 'App/backend-api/**'
- 'App/frontend-app/**'
- 'App/kernel-memory/**'
- '.github/workflows/codeql.yml'
paths-ignore:
- '**/.gitignore'
- '**/Dockerfile'
- '**/.dockerignore'
pull_request:
branches: [ "main", "dev", "demo" ]
paths:
- 'App/backend-api/**'
- 'App/frontend-app/**'
- 'App/kernel-memory/**'
- '.github/workflows/codeql.yml'
paths-ignore:
- '**/.gitignore'
- '**/Dockerfile'
- '**/.dockerignore'
schedule:
- cron: '37 2 * * 5'

Expand Down