Skip to content

Release notes for 29 Sep 2024 #132

Release notes for 29 Sep 2024

Release notes for 29 Sep 2024 #132

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
spellcheck:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
name: Checkout
- id: changed_files
name: Changed Files
uses: tj-actions/changed-files@v45
with:
files: |
**.mdx
files_ignore: |
docs/api/**
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed_files.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
- uses: rojopolis/[email protected]
name: Spellcheck
if: ${{ steps.changed_files.outputs.all_changed_files }}
with:
config_path: spellcheck.yaml
source_files: ${{ steps.changed_files.outputs.all_changed_files }}
task_name: Markdown