Skip to content

Commit

Permalink
Merge pull request #20 from nschloe/format
Browse files Browse the repository at this point in the history
Format
  • Loading branch information
nschloe authored Oct 28, 2022
2 parents 054ce58 + 65ed224 commit b45b573
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
repos:
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.4
hooks:
- id: prettier
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ inputs:
triggered a workflow, this defaults to the reference or SHA for that
event. Otherwise, uses the default branch.
required: false
default: ''
default: ""
repository:
description: 'Repository name with owner. For example, actions/checkout'
description: "Repository name with owner. For example, actions/checkout"
default: ${{ github.repository }}
token:
description: >
Expand Down Expand Up @@ -81,13 +81,13 @@ runs:

- name: Git LFS Pull
run: |
git lfs pull --include "${{ inputs.include }}" --exclude "${{ inputs.exclude }}"
git submodule foreach git lfs pull --include "${{ inputs.include }}" --exclude "${{ inputs.exclude }}"
git lfs pull --include "${{ inputs.include }}" --exclude "${{ inputs.exclude }}"
git submodule foreach git lfs pull --include "${{ inputs.include }}" --exclude "${{ inputs.exclude }}"
shell: bash

# Don't leave behind temp files in case build system checks for dirty workspace
- name: Cleanup Temp Files
run: |
rm .lfs-assets-id-unsorted
rm .lfs-assets-id
rm .lfs-assets-id-unsorted
rm .lfs-assets-id
shell: bash
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version := "1.1.3"
version := "1.2.0"

default:
@echo "\"just publish\"?"
Expand Down

0 comments on commit b45b573

Please sign in to comment.