Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
8b28194
Prepared change to PE interface
AlexanderSehr Feb 14, 2025
4fddff4
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Feb 21, 2025
1adef4a
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 1, 2025
ea51b51
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 1, 2025
1e025f7
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 7, 2025
338ea69
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 7, 2025
8c835eb
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 12, 2025
6477aec
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 22, 2025
2978597
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Apr 27, 2025
c8c7409
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr May 13, 2025
d79dcc5
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr May 13, 2025
dfb02d1
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr May 18, 2025
9a10a6f
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr May 20, 2025
43a3b9c
Update to latest
AlexanderSehr May 20, 2025
48b4b48
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Jun 20, 2025
404392e
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Jun 21, 2025
6ae1278
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Jul 21, 2025
21a40f3
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Jul 31, 2025
bcdf8e0
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Aug 26, 2025
7e7d7ed
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Oct 10, 2025
a550e9f
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Oct 10, 2025
ef6d4c0
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Oct 30, 2025
ea9b76f
Update to latest
AlexanderSehr Oct 30, 2025
2f7e7dc
Disabled check
AlexanderSehr Oct 30, 2025
97161ad
Update to latest
AlexanderSehr Oct 30, 2025
1903c11
Update to latest
AlexanderSehr Oct 30, 2025
6fd7617
Update to latest
AlexanderSehr Oct 30, 2025
420db4a
Update module features table (automated) (#2419)
cae-pr-creator[bot] Oct 30, 2025
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
10 changes: 9 additions & 1 deletion .github/workflows/platform.updateModuleRegistryTables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
env:
pipelinePrincipalGitUserName: "AVMPipelinePrincipal"
pipelinePrincipalGitUserEmail: "AVM@noreply.github.com"
branch_name: "update-module-features-table_${{ github.event.repository.updated_at}}"
branch_name: "update-module-features-table"
pr_title: "Update module features table (automated)"
pr_body: "This is an automated ``pull_request`` containing updates to the module status badges table that is stored at ``docs/content/indexes/bicep/_index.md``, as well as the module features CSV stored at ``docs/static/module-features/bicepFeatures.csv``.\nPlease review the ``files changed`` tab to review changes."

Expand Down Expand Up @@ -46,6 +46,14 @@ jobs:
git config --global user.name '${{ env.pipelinePrincipalGitUserEmail }}'
git config --global user.email '${{ env.pipelinePrincipalGitUserName }}'

- name: Format branch name
shell: pwsh
run: |
$rawBranch = '${{ env.branch_name }}'
$formattedBranch = "{0}_{1}" -f $rawBranch, (Get-Date).ToString('yyyy-MM-dd-HH-mm-ss')
Write-Verbose "Adjusting branch name [$rawBranch] to [$formattedBranch]" -Verbose
('{0}={1}' -f 'branch_name', $formattedBranch) | Out-File -FilePath $env:GITHUB_ENV -Encoding 'utf8' # Overwrite env variable

- name: Create and checkout branch
run: |
BRANCH_URL="repos/${{ github.repository }}/branches"
Expand Down
Loading