Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif committed Aug 1, 2023
1 parent 977c66e commit b3e072a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/spelling.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
git config --global --add safe.directory $(pwd)
- name: Clean up WORDLIST 🧼
if: github.event_name == 'push'
run: |
x <- readLines('inst/WORDLIST')
file.remove('inst/WORDLIST')
Expand All @@ -66,7 +67,15 @@ jobs:
}
shell: Rscript {0}

- name: Checkout to main 🛎
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'
id: file-pattern
run: |
if [[ "${{ inputs.package-subdirectory }}" == "." ]]; then
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/version-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ jobs:
pre-commit autoupdate
- name: Checkout to main 🛎
if: ${{ inputs.vbump-after-release == true }}
run: |
git fetch origin main
git checkout main
Expand Down

0 comments on commit b3e072a

Please sign in to comment.