Skip to content

Merge pull request #118 from jonasbn/dependabot/github_actions/tj-act… #507

Merge pull request #118 from jonasbn/dependabot/github_actions/tj-act…

Merge pull request #118 from jonasbn/dependabot/github_actions/tj-act… #507

Workflow file for this run

name: Spellcheck Action
on: push
jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Get all changed markdown files
uses: tj-actions/changed-files@6cb76d07bee4c9772c6882c06c37837bf82a04d3 # v46.0.4
id: changed_files
with:
files: |
**.md
- name: Run Spellcheck
id: spellcheck
uses: rojopolis/spellcheck-github-actions@v0
with:
task_name: Markdown
source_files: ${{ steps.changed_files.outputs.all_changed_files }}
output_file: spellcheck-output.txt
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
if: '!cancelled()'
with:
name: Spellcheck Output
path: spellcheck-output.txt