⬆️ Updates peter-evans/create-or-update-comment digest to cf1a4a2 #1055
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: Spell Check | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - "*-stable" | |
| # Switch from `pull_request_target` event to reduce distraction from comments | |
| # regarding errors reported in unmodified files. | |
| pull_request: | |
| branches: | |
| - master | |
| - "*-stable" | |
| jobs: | |
| build: | |
| name: Spell Check | |
| runs-on: "ubuntu-latest" | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| - name: Check Spellings | |
| uses: check-spelling/[email protected] |