# GitHub Action - R Spelling Checks *Source: [r.pkg.template/spelling.yaml at main ยท insightsengineering/r.pkg.template (github.com)](https://github.com/insightsengineering/r.pkg.template/blob/main/.github/workflows/spelling.yaml)* ```yaml name: Spelling ๐Ÿ†Ž on: push: branches: - main - pre-release pull_request: branches: - main - pre-release workflow_call: jobs: spelling: name: Check spelling ๐Ÿ”  runs-on: ubuntu-latest if: "! contains(github.event.commits[0].message, '[skip spelling]')" container: image: ghcr.io/insightsengineering/rstudio_4.1.2_bioc_3.14:latest steps: - name: Checkout Code ๐Ÿ›Ž uses: actions/checkout@v2 - name: Run Spellcheck ๐Ÿ‘Ÿ uses: insightsengineering/r-spellcheck-action@v2 with: exclude: inst/extdata/* ``` *** ## Appendix: Links - [[Code]] - [[2-Areas/MOCs/R]] - [[Development]] *Backlinks:* ```dataview list from [[GitHub Action - R Spelling Checks]] AND -"Changelog" ```