Changelog entry for v0.2.4 #1181
Workflow file for this run
This file contains hidden or 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: Check Spelling | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - feature/* | |
| - spelling/* | |
| paths: | |
| - docs/** | |
| - "*.md" | |
| - .github/components/dictionary.txt | |
| workflow_dispatch: | |
| schedule: # run quarterly (Dec/Mar/Jun/Sep), the month before the periodic release issue is filed, on the 15th | |
| - cron: 0 0 15 3,6,9,12 * | |
| concurrency: | |
| # only one run per branch at a time | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| spellcheck: | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'AlexsLemonade' | |
| name: Spell check files | |
| permissions: | |
| contents: read | |
| issues: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Spell check action | |
| uses: alexslemonade/spellcheck@v0 | |
| id: spell | |
| with: | |
| dictionary: .github/components/dictionary.txt | |
| # for pull requests, only checks docs and root markdown files, unless the branch triggering is a 'spelling/' branch | |
| # all other triggers (including 'spelling/'' branches) check all files | |
| files: ${{ (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'spelling/')) && 'docs/* docs/*/* docs/*/*/* *.md' || null }} | |
| - name: Upload spell check errors | |
| uses: actions/upload-artifact@v4 | |
| id: artifact-upload-step | |
| with: | |
| name: spell_check_errors | |
| path: spell_check_errors.tsv | |
| - name: Update template | |
| if: ${{ github.event_name != 'pull_request' && steps.spell.outputs.error_count > 0 }} | |
| env: | |
| ERROR_COUNT: ${{ steps.spell.outputs.error_count }} | |
| ARTIFACT_URL: ${{ steps.artifact-upload-step.outputs.artifact-url }} | |
| run: | | |
| sed -i "s@{{ERROR_COUNT}}@${ERROR_COUNT}@g" .github/cron-issue-templates/spellcheck-issue-template.md | |
| sed -i "s@{{ARTIFACT_URL}}@${ARTIFACT_URL}@g" .github/cron-issue-templates/spellcheck-issue-template.md | |
| - name: Post issue with spellcheck results | |
| if: ${{ github.event_name != 'pull_request' && steps.spell.outputs.error_count > 0 }} | |
| id: spellissue | |
| uses: peter-evans/create-issue-from-file@v5 | |
| with: | |
| title: Monthly spellcheck results | |
| content-filepath: .github/cron-issue-templates/spellcheck-issue-template.md | |
| labels: | | |
| OpenScPCA admin | |
| spelling | |
| - name: Fail if there are spelling errors for non-scheduled jobs | |
| if: github.event_name != 'schedule' && steps.spell.outputs.error_count > 0 | |
| run: | | |
| echo "There were ${{ steps.spell.outputs.error_count }} errors" | |
| column -t spell_check_errors.tsv | |
| exit 1 |