diff --git a/.github/workflows/spelling.yaml b/.github/workflows/spelling.yaml index 0ab22234..11aa4bd2 100644 --- a/.github/workflows/spelling.yaml +++ b/.github/workflows/spelling.yaml @@ -113,7 +113,7 @@ jobs: - name: Normalize variables ๐Ÿ“ if: > - !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') }} + !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') run: | package_subdirectory_input="${{ inputs.package-subdirectory }}" echo "package_subdirectory=${package_subdirectory_input:-.}" >> $GITHUB_ENV @@ -121,7 +121,7 @@ jobs: - name: Run Spellcheck ๐Ÿ‘Ÿ if: > - !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') }} + !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') uses: insightsengineering/r-spellcheck-action@v2 with: exclude: ${{ inputs.exclude }} @@ -130,7 +130,7 @@ jobs: - name: Clean up WORDLIST ๐Ÿงผ if: > github.event_name == 'push' && - !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') }} + !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') run: | x <- readLines('inst/WORDLIST') file.remove('inst/WORDLIST') @@ -145,7 +145,7 @@ jobs: - name: Checkout to main ๐Ÿ›Ž if: > github.event_name == 'push' && - !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') }} + !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') run: | git fetch origin main git checkout main @@ -154,7 +154,7 @@ jobs: - name: Set file pattern to commit โš™๏ธ if: > github.event_name == 'push' && - !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') }} + !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') id: file-pattern run: | if [[ "${{ inputs.package-subdirectory }}" == "." ]]; then @@ -168,7 +168,7 @@ jobs: - name: Commit and push changes ๐Ÿ“Œ if: > github.event_name == 'push' && - !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') }} + !contains(steps.get-commit-message.outputs.head_commit_message, '[skip spelling]') uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "[skip ci] Update WORDLIST"