Skip to content

Commit 7bfd5ed

Browse files
authored
Merge pull request #14 from MicrosoftCloudEssentials-LearningHub/diagrams
Diagrams
2 parents 6785a96 + 4e5ef5f commit 7bfd5ed

15 files changed

+5492
-60
lines changed

.github/workflows/use-visitor-counter.yml

Lines changed: 19 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
24+
ref: ${{ github.head_ref || github.ref_name }}
2425

2526
- name: Shallow clone visitor counter logic
2627
run: git clone --depth=1 https://github.com/brown9804/github-visitor-counter.git
@@ -57,38 +58,23 @@ jobs:
5758
git config --global user.name "github-actions[bot]"
5859
git config --global user.email "github-actions[bot]@users.noreply.github.com"
5960
60-
- name: Commit and push changes (PR)
61-
if: github.event_name == 'pull_request'
61+
- name: Commit and merge changes
6262
env:
63-
TOKEN: ${{ secrets.GITHUB_TOKEN }}
63+
PR_BRANCH: ${{ github.head_ref || github.ref_name }}
64+
GIT_AUTHOR_NAME: github-actions[bot]
65+
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com
66+
GIT_COMMITTER_NAME: github-actions[bot]
67+
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com
6468
run: |
65-
git fetch origin
66-
git checkout -b ${{ github.event.pull_request.head.ref }} origin/${{ github.event.pull_request.head.ref }}
67-
git add "*.md" metrics.json
68-
git commit -m "Update visitor count" || echo "No changes to commit"
69-
git remote set-url origin https://x-access-token:${TOKEN}@github.com/${{ github.repository }}
70-
git pull --rebase origin ${{ github.event.pull_request.head.ref }} || echo "No rebase needed"
71-
git push origin HEAD:${{ github.event.pull_request.head.ref }}
72-
73-
- name: Commit and push changes (non-PR)
74-
if: github.event_name != 'pull_request'
75-
env:
76-
TOKEN: ${{ secrets.GITHUB_TOKEN }}
77-
run: |
78-
git fetch origin
79-
git checkout ${{ github.event.pull_request.head.ref }} || git checkout -b ${{ github.event.pull_request.head.ref }} origin/${{ github.event.pull_request.head.ref }}
80-
git add "*.md" metrics.json
81-
git commit -m "Update visitor count" || echo "No changes to commit"
82-
git remote set-url origin https://x-access-token:${TOKEN}@github.com/${{ github.repository }}
83-
git pull --rebase origin ${{ github.event.pull_request.head.ref }} || echo "No rebase needed"
84-
git push origin HEAD:${{ github.event.pull_request.head.ref }}
85-
86-
- name: Create Pull Request (non-PR)
87-
if: github.event_name != 'pull_request'
88-
uses: peter-evans/create-pull-request@v6
89-
with:
90-
token: ${{ secrets.GITHUB_TOKEN }}
91-
branch: update-visitor-count
92-
title: "Update visitor count"
93-
body: "Automated update of visitor count"
94-
base: main
69+
# Ensure we're on the correct branch
70+
git switch -c "$PR_BRANCH" || git switch "$PR_BRANCH"
71+
72+
# Stage and commit changes if any
73+
git add -A
74+
git diff --staged --quiet || git commit -m "Update visitor count"
75+
76+
# Pull and merge existing changes
77+
git pull origin "$PR_BRANCH" --no-rebase
78+
79+
# Push all changes
80+
git push origin "$PR_BRANCH"

0_RAG_Overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ graph LR
147147

148148
<!-- START BADGE -->
149149
<div align="center">
150-
<img src="https://img.shields.io/badge/Total%20views-1341-limegreen" alt="Total views">
151-
<p>Refresh Date: 2025-08-18</p>
150+
<img src="https://img.shields.io/badge/Total%20views-1344-limegreen" alt="Total views">
151+
<p>Refresh Date: 2025-09-09</p>
152152
</div>
153153
<!-- END BADGE -->

1_PrivateArchitecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ graph TD
289289

290290
<!-- START BADGE -->
291291
<div align="center">
292-
<img src="https://img.shields.io/badge/Total%20views-1341-limegreen" alt="Total views">
293-
<p>Refresh Date: 2025-08-18</p>
292+
<img src="https://img.shields.io/badge/Total%20views-1344-limegreen" alt="Total views">
293+
<p>Refresh Date: 2025-09-09</p>
294294
</div>
295295
<!-- END BADGE -->

2_ZeroTrustOverview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ From [Zero Trust Architecture Deployment](https://github.com/Azure/GPT-RAG?tab=r
8282

8383
<!-- START BADGE -->
8484
<div align="center">
85-
<img src="https://img.shields.io/badge/Total%20views-1341-limegreen" alt="Total views">
86-
<p>Refresh Date: 2025-08-18</p>
85+
<img src="https://img.shields.io/badge/Total%20views-1344-limegreen" alt="Total views">
86+
<p>Refresh Date: 2025-09-09</p>
8787
</div>
8888
<!-- END BADGE -->

3_PricingDemos/0_Doc-Intellig.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Last updated: 2025-08-18
5757

5858
<!-- START BADGE -->
5959
<div align="center">
60-
<img src="https://img.shields.io/badge/Total%20views-1341-limegreen" alt="Total views">
61-
<p>Refresh Date: 2025-08-18</p>
60+
<img src="https://img.shields.io/badge/Total%20views-1344-limegreen" alt="Total views">
61+
<p>Refresh Date: 2025-09-09</p>
6262
</div>
6363
<!-- END BADGE -->

3_PricingDemos/1_AI-Search.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Last updated: 2025-08-18
6666

6767
<!-- START BADGE -->
6868
<div align="center">
69-
<img src="https://img.shields.io/badge/Total%20views-1341-limegreen" alt="Total views">
70-
<p>Refresh Date: 2025-08-18</p>
69+
<img src="https://img.shields.io/badge/Total%20views-1344-limegreen" alt="Total views">
70+
<p>Refresh Date: 2025-09-09</p>
7171
</div>
7272
<!-- END BADGE -->

3_PricingDemos/2_AOAI-AIFoundry.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ This means with 50 PTUs, you can process 75,000 tokens per minute.
169169

170170
<!-- START BADGE -->
171171
<div align="center">
172-
<img src="https://img.shields.io/badge/Total%20views-1341-limegreen" alt="Total views">
173-
<p>Refresh Date: 2025-08-18</p>
172+
<img src="https://img.shields.io/badge/Total%20views-1344-limegreen" alt="Total views">
173+
<p>Refresh Date: 2025-09-09</p>
174174
</div>
175175
<!-- END BADGE -->

3_PricingDemos/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ graph TD
138138
139139
<!-- START BADGE -->
140140
<div align="center">
141-
<img src="https://img.shields.io/badge/Total%20views-1341-limegreen" alt="Total views">
142-
<p>Refresh Date: 2025-08-18</p>
141+
<img src="https://img.shields.io/badge/Total%20views-1344-limegreen" alt="Total views">
142+
<p>Refresh Date: 2025-09-09</p>
143143
</div>
144144
<!-- END BADGE -->

4_Which_Copilot_toChoose.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ From [Cloud computing - Service Models: SAAS, PAAS, IAAS - Which Is Better For B
156156
157157
<!-- START BADGE -->
158158
<div align="center">
159-
<img src="https://img.shields.io/badge/Total%20views-1341-limegreen" alt="Total views">
160-
<p>Refresh Date: 2025-08-18</p>
159+
<img src="https://img.shields.io/badge/Total%20views-1344-limegreen" alt="Total views">
160+
<p>Refresh Date: 2025-09-09</p>
161161
</div>
162162
<!-- END BADGE -->

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Costa Rica
77
[![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/)
88
[brown9804](https://github.com/brown9804)
99

10-
Last updated: 2025-08-18
10+
Last updated: 2025-09-09
1111

1212
----------
1313

@@ -58,6 +58,13 @@ Last updated: 2025-08-18
5858
| --- | --- | --- |
5959
| <img width="800" alt="image" src="https://github.com/user-attachments/assets/5444e87c-32af-44e8-aa86-22fe4082c4f4" /> | <img width="800" alt="image" src="https://github.com/user-attachments/assets/af835493-2d76-4216-8df6-3e258c9db949"> | <img width="800" alt="image" src="https://github.com/user-attachments/assets/67e7d9eb-f757-4fe9-85f4-d5bb08b9e55f" /> |
6060

61+
<details>
62+
<summary><b>RAG + Fabric (Private Chatbot with your data + Dashboards)</b> (Click to expand)</summary>
63+
64+
<img width="2621" height="1776" alt="ZeroTrustPrivateBot-RAG+Fabric drawio" src="https://github.com/user-attachments/assets/7537d6a7-faa8-492a-9e51-af3fccdbcccc" />
65+
66+
</details>
67+
6168
> Here is a [quick overview about RAG](./0_RAG_Overview.md), explaining how it works, its applications, and how to implement it using Azure AI services.
6269
6370
> [!TIP]
@@ -422,7 +429,7 @@ gpt-rag-resource-group: resource not found: 0 resource groups with prefix or suf
422429
423430
<!-- START BADGE -->
424431
<div align="center">
425-
<img src="https://img.shields.io/badge/Total%20views-1341-limegreen" alt="Total views">
426-
<p>Refresh Date: 2025-08-18</p>
432+
<img src="https://img.shields.io/badge/Total%20views-1344-limegreen" alt="Total views">
433+
<p>Refresh Date: 2025-09-09</p>
427434
</div>
428435
<!-- END BADGE -->

0 commit comments

Comments
 (0)