⬆️ Update 👷 GitHub Action codecov/codecov-action to 7f8b4b4 #766
Workflow file for this run
This file contains 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: Spellcheck | |
on: | |
pull_request: | |
types: [synchronize, edited, opened] | |
jobs: | |
skip: | |
name: Check Duplicate Actions | |
runs-on: ubuntu-latest | |
outputs: | |
should-skip: ${{steps.skip-check.outputs.should_skip}} | |
steps: | |
- name: Skip Duplicate Actions (Spellcheck) | |
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf # v5 | |
id: skip-check | |
spellcheck: | |
name: Spellcheck | |
runs-on: ubuntu-latest | |
needs: skip | |
if: needs.skip.outputs.should-skip != 'true' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Checking Spelling | |
uses: crate-ci/typos@2872c382bb9668d4baa5eade234dcbc0048ca2cf # v1.28.2 | |
with: | |
config: ${{github.workspace}}/.github/settings/typos.yml |