Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions .github/workflows/linkvalidator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Resolve root-relative links for checking
run: |
# Convert root-relative markdown links like [text](/path) to [text](https://learn.microsoft.com/path)
# so lychee can validate them. This only modifies the CI checkout copy.
find . -name '*.md' -exec sed -i -E 's|\]\(/|\](https://learn.microsoft.com/|g' {} +

- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@master
Expand Down
2 changes: 1 addition & 1 deletion msal-python-conceptual/advanced/migrate.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ and then when a new RT comes back, MSAL will store it in the usual way.
As this method is intended for scenarios that are not typical, it is NOT readily accessible with the official API surface.
You will have to call it via an internal helper `app.client`,
and its naming convention is also slightly different than those other
[official APIs]().
[official APIs](../getting-started/acquiring-tokens.md).

```python
from msal import PublicClientApplication
Expand Down
Loading