Skip to content

Commit 08434f4

Browse files
authored
Merge pull request #103 from johnlokerse/fix/markdown-checker
Added md check config file, removed deleted Azure GitHub project
2 parents 5f65685 + ce73038 commit 08434f4

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.github/workflows/markdown-link-checker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Markdown Link Checker
22

3-
on:
3+
on:
44
push:
55
branches:
66
- main
@@ -21,6 +21,7 @@ jobs:
2121
with:
2222
use-quiet-mode: 'yes'
2323
use-verbose-mode: 'yes'
24+
config-file: '.github/workflows/mlc_config.json'
2425
- name: Sleep for 3hrs
2526
if: ${{ steps.markdownlinkcheck.outcome == 'failure' && steps.markdownlinkcheck.conclusion == 'success' }}
2627
uses: juliangruber/sleep-action@v1
@@ -32,3 +33,4 @@ jobs:
3233
with:
3334
use-quiet-mode: 'yes'
3435
use-verbose-mode: 'yes'
36+
config-file: '.github/workflows/mlc_config.json'

.github/workflows/mlc_config.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"ignorePatterns": [
3+
{
4+
"pattern": "^https://www.reddit.com"
5+
}
6+
]
7+
}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ Hand-picked tips and tricks to help you learn Azure Bicep and get you ready to s
9595
- [Bicep Testing Framework (BenchPress)](https://github.com/Azure/benchpress)
9696
- [Bicep type definitions for ARM resources](https://github.com/Azure/bicep-types-az)
9797
- [Common Azure Resource Modules Library (CARML)](https://github.com/Azure/ResourceModules)
98-
- [Guardrails Solution Accelerator for Canadian Public Sector - Bicep setup](https://github.com/Azure/GuardrailsSolutionAccelerator/tree/main/setup/IaC)
9998
- [Project Bicep - an ARM DSL](https://github.com/Azure/bicep)
10099
- [Template Best Practice Analyzer (BPA)](https://github.com/Azure/template-analyzer)
101100

0 commit comments

Comments
 (0)