Skip to content

Commit

Permalink
Fix all the md linting issues, and add fabricbot.
Browse files Browse the repository at this point in the history
  • Loading branch information
IEvangelist committed Nov 15, 2023
1 parent 5fbe81a commit c89666a
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 3 deletions.
56 changes: 56 additions & 0 deletions .github/fabricbot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"version": "1.0",
"tasks": [
{
"taskType": "scheduled",
"capabilityId": "ScheduledPR",
"subCapability": "ScheduledPR",
"version": "1.0",
"config": {
"head": "main",
"base": "live",
"body": "Please don't squash-merge this PR.",
"title": "Merge main into live",
"frequency": [
{
"weekDay": 1,
"hours": [
22
],
"timezoneOffset": -7
},
{
"weekDay": 2,
"hours": [
22
],
"timezoneOffset": -7
},
{
"weekDay": 3,
"hours": [
22
],
"timezoneOffset": -7
},
{
"weekDay": 4,
"hours": [
22
],
"timezoneOffset": -7
},
{
"weekDay": 5,
"hours": [
22
],
"timezoneOffset": -7
}
],
"taskName": "Push to live branch (publish)"
}
}
],
"userGroups": []
}
2 changes: 1 addition & 1 deletion .github/workflows/markdownlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ jobs:
run: |
echo "::add-matcher::.github/workflows/markdownlint-problem-matcher.json"
npm i -g markdownlint-cli2
markdownlint-cli2 --config ".markdownlist-cli2.jsonc" "**/*.md"
markdownlint-cli2 --config ".markdownlint-cli2.jsonc" "**/*.md"
9 changes: 8 additions & 1 deletion .markdownlist-cli2.jsonc → .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
},
// Disabled as word wrapping can cause many diffs
"MD013": false,
"MD023": false,
// Currently broken with custom tab solution
"MD024": false,
// Currently broken with custom tab solution
Expand Down Expand Up @@ -65,6 +66,12 @@
"MD051": false
},
"ignores": [
".github/"
".github/",
"LICENSE*",
"README.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md",
"ThirdPartyNotices.md"
]
}
2 changes: 1 addition & 1 deletion docs/deployment/azure/aca-deployment-azd-in-depth.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Before deploying a .NET Aspire application with `azd`, the repository/path conta
1. After scanning, `azd` prompts you to confirm that it found the correct .NET project containing the .NET Aspire app's _AppHost_ code. After checking the path, select the "Confirm and continue initializing my app" option.

:::image type="content" source="media/azd-prompt-confirm-path.png" alt-text="Screenshot of `azd` confirming the detected location of the .NET Aspire application.":::

Once the path to the AppHost is confirmed `azd` will analyze the .NET Aspire app model defined
in the AppHost and prompt which of the projects referenced in the app model should be exposed
via a public endpoint. For the starter application template only the `webfrontend` should be
Expand Down

0 comments on commit c89666a

Please sign in to comment.