Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Mar 4, 2024
1 parent 6d86738 commit 4103f38
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/spelling.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,7 @@ jobs:
path: ${{ env.package_subdirectory }}

- name: Clean up WORDLIST 🧼
if: >
github.event_name == 'push'
if: github.event_name == 'push'
run: |
x <- readLines('inst/WORDLIST')
file.remove('inst/WORDLIST')
Expand All @@ -144,16 +143,14 @@ jobs:
shell: Rscript {0}

- name: Checkout to main 🛎
if: >
github.event_name == 'push'
if: github.event_name == 'push'
run: |
git fetch origin main
git checkout main
git pull origin main
- name: Set file pattern to commit ⚙️
if: >
github.event_name == 'push'
if: github.event_name == 'push'
id: file-pattern
run: |
if [[ "${{ inputs.package-subdirectory }}" == "." ]]; then
Expand All @@ -165,8 +162,7 @@ jobs:
shell: bash

- name: Commit and push changes 📌
if: >
github.event_name == 'push'
if: github.event_name == 'push'
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[skip ci] Update WORDLIST"
Expand Down

0 comments on commit 4103f38

Please sign in to comment.