Skip to content

Commit

Permalink
Only optimize img if a png is added (#6780)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro authored Apr 23, 2024
1 parent d5911ba commit 096bc6c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,16 @@ concurrency:
jobs:
pre_commit:
name: Run pre-commit
needs: [setup]
runs-on: 'ubuntu-latest'
steps:
- uses: holoviz-dev/holoviz_tasks/pre-commit@v0
- uses: pre-commit/[email protected]
if: needs.setup.outputs.img_change == 'true'
with:
extra_args: -a --hook-stage manual oxipng || true --
- uses: stefanzweifel/git-auto-commit-action@v4
if: needs.setup.outputs.img_change == 'true'
with:
commit_message: "Optimize PNG images (lossless)"
file_pattern: "*.png"
Expand All @@ -49,6 +52,7 @@ jobs:
outputs:
code_change: ${{ steps.filter.outputs.code }}
doc_change: ${{ steps.filter.outputs.doc }}
img_change: ${{ steps.filter.outputs.img }}
matrix: ${{ env.MATRIX }}
steps:
- uses: actions/checkout@v4
Expand All @@ -70,6 +74,8 @@ jobs:
- 'doc/how_to/**'
- 'scripts/**'
- 'lite/**'
img:
- '**/*.png'
- name: Set matrix option
run: |
if [[ '${{ github.event_name }}' == 'workflow_dispatch' ]]; then
Expand Down

0 comments on commit 096bc6c

Please sign in to comment.