Skip to content
Merged
Show file tree
Hide file tree
Changes from 33 commits
Commits
Show all changes
36 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
799abec
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Nov 7, 2025
2a85952
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Nov 10, 2025
dacefa5
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Nov 11, 2025
a9c9717
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Nov 11, 2025
82f0b9e
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Nov 12, 2025
e19f0f1
Update to latest
AlexanderSehr Nov 12, 2025
5318047
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Nov 13, 2025
99675f5
Merge branches 'main' and 'users/alsehr/cmkWarning' of https://github…
AlexanderSehr Nov 17, 2025
ef41d37
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Dec 9, 2025
a4a04a2
Merge branch 'main' of https://github.com/Azure/Azure-Verified-Modules
AlexanderSehr Jan 14, 2026
6fee29f
Update to latest
AlexanderSehr Jan 14, 2026
10cfb02
Update docs/content/contributing/bicep/bicep-contribution-flow/_index.md
AlexanderSehr Jan 14, 2026
9d806c7
Update to latest
AlexanderSehr Jan 14, 2026
050cf6f
Update to latest
AlexanderSehr Jan 14, 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
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,18 @@ If you're working on a new module, we'd also ask you to create its corresponding

{{% /expand %}}

{{% notice style="tip" %}}

The workflow is configured in a way that it will trigger on any changes in Upstream's (i.e., `Azure/bicep-registry-modules`) `main` branch if they may have an impact on the module or its validation. However, while in a fork, the workflow will stop right after initiation thanks to the condition:
```yml
# Only run if not canceled and not in a fork, unless triggered by a workflow_dispatch event
if: ${{ !cancelled() && !(github.repository != 'Azure/bicep-registry-modules' && github.event_name != 'workflow_dispatch') }}
```
This condition ensures that you don't accidently trigger a large amount of module workflows when e.g., merging changes from upstream into your fork.

{{% /notice %}}


{{% notice style="tip" %}}

After any change to a module and before running tests, we highly recommend running the [Set-AVMModule]({{% siteparam base %}}/contributing/bicep/bicep-contribution-flow/generate-bicep-module-files) utility to update all module files that are auto-generated (e.g., the `main.json` & `readme.md` files).
Expand Down
1 change: 1 addition & 0 deletions docs/static/includes/avm.workflow.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
job_initialize_pipeline:
runs-on: ubuntu-latest
name: "Initialize pipeline"
if: ${{ !cancelled() && !(github.repository != 'Azure/bicep-registry-modules' && github.event_name != 'workflow_dispatch') }}
steps:
- name: "Checkout"
uses: actions/checkout@v5
Expand Down