⬆️ Update 👷 GitHub Action moonrepo/setup-rust to e013866 #719
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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Checking Spelling | |
uses: crate-ci/typos@935271f0204ebdf61717cf6caac31d8d115f1c14 # v1.23.6 | |
with: | |
config: ${{github.workspace}}/.github/settings/typos.yml |