Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b0baf4f
build: bump the all-frontend-deps group in /src/frontend with 23 updates
dependabot[bot] Mar 1, 2026
0f49224
build: bump the all-actions group with 6 updates
dependabot[bot] Mar 1, 2026
c1cf37b
build: bump the all-backend-deps group in /src/backend with 5 updates
dependabot[bot] Mar 1, 2026
1992e23
build: bump the all-frontend-deps group in /src/frontend with 20 updates
dependabot[bot] Apr 1, 2026
94e7889
build: bump the all-backend-deps group in /src/backend with 7 updates
dependabot[bot] Apr 1, 2026
c55ff18
build: bump the all-actions group with 5 updates
dependabot[bot] Apr 1, 2026
3f1b99c
fix: handle navigation when all files are harmful content
Shreyas-Microsoft Apr 14, 2026
73ed7eb
fix: add fallback polling for missed WebSocket events
Shreyas-Microsoft Apr 14, 2026
29d181c
docs: Add sections for Features, Getting Started, Guidance, and Resou…
VishalS-Microsoft Apr 16, 2026
e098d47
Add pytest coverage comment to PRs
Rafi-Microsoft Apr 16, 2026
f9a4828
Refactor error handling and clean up unused state variables in variou…
Kanchan-Microsoft Apr 17, 2026
325adad
Merge branch 'dev' into feature/fix-code-quality-alerts
Kanchan-Microsoft Apr 17, 2026
82991cf
fixed pylint issue
Kanchan-Microsoft Apr 17, 2026
2029575
remove unused import of useSelector
Kanchan-Microsoft Apr 17, 2026
34f4949
fix: add .dockerignore to exclude build artifacts and environment files
VishalS-Microsoft Apr 20, 2026
114c038
Merge branch 'dev' of https://github.com/microsoft/Modernize-your-cod…
Dhruvkumar-Microsoft Apr 20, 2026
049b9e5
Merge pull request #410 from microsoft/psl-add-coverage-pr-comment
Roopan-Microsoft Apr 20, 2026
549917d
Update Bicep modules and resource versions across the infrastructure
Pavan-Microsoft Apr 20, 2026
d8d1bbd
Refactor Bicep modules for improved configuration and output handling
Pavan-Microsoft Apr 20, 2026
734757b
Remove aiModelDeployments parameter from main.parameters.json and mai…
Pavan-Microsoft Apr 20, 2026
a59df85
Merge pull request #416 from microsoft/psl-navigation-fix
Roopan-Microsoft Apr 21, 2026
c7c776c
updated the packages version
Dhruvkumar-Microsoft Apr 21, 2026
b67f3cd
updated the azure.yaml
Dhruvkumar-Microsoft Apr 21, 2026
c00e0be
Merge pull request #415 from microsoft/pk-bicep-avm-module-version
Roopan-Microsoft Apr 21, 2026
d1ceb02
fix: add .dockerignore to exclude build artifacts and environment files
Avijit-Microsoft Apr 21, 2026
ac37bb6
Merge pull request #417 from microsoft/psl-dependabotchanges-dk
Roopan-Microsoft Apr 21, 2026
a74f5c6
Removed the bicep paramater
Dhruvkumar-Microsoft Apr 21, 2026
a4dd91b
Merge pull request #411 from microsoft/feature/fix-code-quality-alerts
Roopan-Microsoft Apr 21, 2026
61aa3d1
Merge remote-tracking branch 'origin/dev' into psl-fixnoncofriming-cm
VishalS-Microsoft Apr 22, 2026
403c9d2
fix: streamline README content for clarity and conciseness
VishalS-Microsoft Apr 22, 2026
4dd3653
Revise README for clarity and additional resources
Prajwal-Microsoft Apr 22, 2026
621f139
Merge pull request #409 from microsoft/psl-fixnoncofriming-cm
Prajwal-Microsoft Apr 22, 2026
b22ea8d
Merge pull request #418 from microsoft/feature/remove-bicep-version
Roopan-Microsoft Apr 22, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/Create-Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
ref: ${{ github.event.workflow_run.head_sha }}

- uses: codfish/semantic-release-action@v4
- uses: codfish/semantic-release-action@v5
id: semantic
with:
tag-format: 'v${version}'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/broken-links-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Get changed markdown files (PR only)
id: changed-markdown-files
if: github.event_name == 'pull_request'
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v46
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v46
with:
files: |
**/*.md
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Check Broken Links in Changed Markdown Files
id: lychee-check-pr
if: github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
uses: lycheeverse/lychee-action@v2.7.0
uses: lycheeverse/lychee-action@v2.8.0
with:
args: >
--verbose --no-progress --exclude ^https?://
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
id: lychee-check-manual
if: github.event_name == 'workflow_dispatch'
uses: lycheeverse/lychee-action@v2.7.0
uses: lycheeverse/lychee-action@v2.8.0
with:
args: >
--verbose --no-progress --exclude ^https?://
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: az acr login --name ${{ inputs.registry }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Get current date
id: date
Expand All @@ -61,7 +61,7 @@ jobs:


- name: Build Docker Image and optionally push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
file: ${{ inputs.dockerfile }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/job-deploy-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
WEBAPP_URL: ${{ steps.get_output_linux.outputs.WEBAPP_URL }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Validate Workflow Input Parameters
shell: bash
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/job-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
echo "Generated unique Docker tag: $UNIQUE_TAG"

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to Azure
uses: azure/login@v2
Expand All @@ -58,7 +58,7 @@ jobs:
run: az acr login --name ${{ secrets.ACR_TEST_LOGIN_SERVER }}

- name: Build and Push Cod Mod backend Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
env:
DOCKER_BUILD_SUMMARY: false
with:
Expand All @@ -70,7 +70,7 @@ jobs:
${{ secrets.ACR_TEST_LOGIN_SERVER }}/cmsabackend:${{ steps.generate_docker_tag.outputs.IMAGE_TAG }}_${{ github.run_number }}

- name: Build and Push Cod Mod frontend Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
env:
DOCKER_BUILD_SUMMARY: false
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload CSV Report of Inactive Branches
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: merged-branches-report
path: merged_branches_report.csv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-automation-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:

- name: Upload test report
id: upload_report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: test-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python-version: '3.13'

- name: Azure CLI Login
uses: azure/login@v2
uses: azure/login@v3
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Upload test report
id: upload_report
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
if: ${{ !cancelled() }}
with:
name: test-report
Expand Down
15 changes: 14 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Test Workflow with Coverage - Code-Gen
permissions:
contents: read
actions: read
pull-requests: write
on:
push:
branches:
Expand Down Expand Up @@ -112,10 +113,22 @@ jobs:
if: env.skip_backend_tests == 'false'
run: |
cd src
pytest tests/backend --cov=backend --cov-report=term-missing --cov-report=xml --cov-fail-under=80
pytest tests/backend --cov=backend --cov-report=term-missing --cov-report=xml --cov-fail-under=80 --junitxml=pytest.xml



- name: Pytest Coverage Comment
if: |
always() &&
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.fork == false &&
env.skip_backend_tests == 'false'
uses: MishaKav/pytest-coverage-comment@26f986d2599c288bb62f623d29c2da98609e9cd4 # v1.6.0
with:
pytest-xml-coverage-path: src/coverage.xml
junitxml-path: src/pytest.xml
report-only-changed-files: true

- name: Skip Backend Tests
if: env.skip_backend_tests == 'true'
run: |
Expand Down
Loading
Loading