feat(docs): retrieve asset manager dynamically in FAssets developer guides #1069
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Spell Check | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| spell-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: tj-actions/changed-files@v46 | |
| with: | |
| include_all_old_new_renamed_files: true | |
| files: | | |
| **/*.md | |
| **/*.mdx | |
| - name: Run Spell Check on all changed files | |
| uses: crate-ci/typos@master | |
| with: | |
| config: ./.github/config/typos.toml | |
| files: ${{ steps.changed-files.outputs.all_changed_files }} |