Merge pull request #296 from rojopolis/dependabot/github_actions/dock… #564
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: Spellcheck Action | |
| on: | |
| # Enabling manual test | |
| # REF: https://stackoverflow.com/questions/58933155/manual-workflow-triggers-in-github-actions | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| build: | |
| name: Spellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| # The checkout step | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # ratchet:actions/checkout@v4 | |
| - uses: rojopolis/spellcheck-github-actions@16d0338a5a3b5e3111a078029fb9a07a8125053d # ratchet:rojopolis/spellcheck-github-actions@v0 | |
| name: Spellcheck | |
| with: | |
| source_files: README.md CHANGELOG.md | |
| task_name: Markdown | |
| output_file: spellcheck-output.txt | |
| - uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # ratchet:actions/upload-artifact@v4 | |
| if: '!cancelled()' | |
| name: Archive spellcheck output | |
| with: | |
| name: Spellcheck artifact | |
| path: spellcheck-output.txt |