name: "Check spelling" on: # rebuild any PRs and main branch changes push: branches-ignore: - "dependabot/**" pull_request: permissions: contents: read jobs: spellcheck: runs-on: ubuntu-latest steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 with: persist-credentials: false - uses: streetsidesoftware/cspell-action@dcd03dc3e8a59ec2e360d0c62db517baa0b4bb6d # v7.2.0 with: inline: warning strict: false incremental_files_only: true