Skip to content

Commit 498ca9f

Browse files
Merge branch 'Azure:main' into main
2 parents f8a88f1 + ef0c533 commit 498ca9f

File tree

4,312 files changed

+2564551
-1853314
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,312 files changed

+2564551
-1853314
lines changed

.github/CODEOWNERS

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# See for instructions on this file https://help.github.com/articles/about-codeowners/
22

3-
/linter_exclusions.yml @kairu-ms @fengzhou-msft
3+
/linter_exclusions.yml @kairu-ms @wangzelin007
44

5-
/src/index.json @fengzhou-msft @qwordy @houk-ms @kairu-ms @jsntcy @Juliehzl @jiasli @zhoxing-ms @evelyn-ys @xfz11 @08nholloway @necusjz
5+
/src/index.json @kairu-ms @jsntcy @jiasli @zhoxing-ms @evelyn-ys @necusjz @wangzelin007
66

77
/src/footprint/ @jonunezd @Diego-Perez-Botero
88

@@ -22,7 +22,7 @@
2222

2323
/src/eventgrid/ @kalyanaj
2424

25-
/src/storage-preview/ @evelyn_ys @calvinhzy
25+
/src/storage-preview/ @evelyn-ys @calvinhzy
2626

2727
/src/dev-spaces/ @amsoedal
2828

@@ -112,9 +112,9 @@
112112

113113
/src/blueprint/ @fengzhou-msft
114114

115-
/src/storage-blob-preview/ @evelyn_ys @calvinhzy
115+
/src/storage-blob-preview/ @evelyn-ys @calvinhzy
116116

117-
/src/logic/ @jsntcy @kairu
117+
/src/logic/ @jsntcy @kairu-ms
118118

119119
/src/hardware-security-modules/ @bquantump
120120

@@ -226,7 +226,7 @@
226226

227227
/src/image-gallery/ @zhoxing-ms
228228

229-
/src/keyvault-preview/ @evelyn_ys @calvinhzy
229+
/src/keyvault-preview/ @evelyn-ys @calvinhzy
230230

231231
/src/init/ @zhoxing-ms @HuangYT2000
232232

@@ -324,4 +324,12 @@
324324

325325
/src/azext_durabletask/ @RyanLettieri
326326

327-
/src/acat @qinqingxu @Sherylueen @yongxin-ms @wh-alice
327+
/src/acat @qinqingxu @Sherylueen @yongxin-ms @wh-alice
328+
329+
/src/zones/ @nielsams
330+
331+
/src/vme/ @caoyihua
332+
333+
/src/carbon/ @itiinani
334+
335+
/src/amlfs/ @Aman-Jain-14 @amajai @mawhite @brpanask @tibanyas
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: GH Azdev Setup
2+
description: 'azdev env setup'
3+
4+
runs:
5+
using: 'composite'
6+
steps:
7+
- name: Check Init GH Event
8+
env:
9+
action: ${{ toJSON(github.event.action) }}
10+
label: ${{ toJSON(github.event.label) }}
11+
shell: bash
12+
run: |
13+
echo start azdev env setup
14+
- name: Checkout CLI extension repo
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0 # checkout all branches
18+
ref: ${{ github.event.pull_request.head.ref }}
19+
repository: ${{ github.event.pull_request.head.repo.full_name }} # checkout pull request branch
20+
- name: Set up Python 3.11
21+
uses: actions/setup-python@v3
22+
with:
23+
python-version: "3.11"
24+
- name: Checkout CLI main repo
25+
uses: actions/checkout@v4
26+
with:
27+
repository: Azure/azure-cli
28+
path: ./azure-cli
29+
- name: Move the main repo to the same level as the extension repo
30+
shell: bash
31+
run: |
32+
pwd
33+
ls
34+
mv azure-cli ../
35+
cd ../
36+
pwd
37+
ls
38+
- name: Install azdev
39+
shell: bash
40+
run: |
41+
python -m pip install --upgrade pip
42+
set -ev
43+
python -m venv env
44+
chmod +x env/bin/activate
45+
source ./env/bin/activate
46+
pip install azdev
47+
azdev --version
48+
cd ../
49+
azdev setup -c azure-cli -r azure-cli-extensions --debug
50+
az --version
51+
pip list -v

.github/azure-client-tools-bot/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ allowed_branches:
1111
- "main"
1212
auto_choose_milestone:
1313
pr_expected_days: 7
14+
pr_comment: false
1415
pull_request:
1516
comment:
1617
- azure_pipeline:

.github/copilot-instructions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- @azure Rule - Use Azure Best Practices: When generating code for Azure, running terminal commands for Azure, or performing operations related to Azure, invoke your `azure_development-get_best_practices` tool if available.

0 commit comments

Comments
 (0)