Merge pull request #497 from achrafhardizi/feature/fix-issue-496 #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compress images | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- next-astro | |
paths: | |
- "**.jpg" | |
- "**.jpeg" | |
- "**.png" | |
- "**.webp" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: calibreapp/image-actions | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Branch | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Compress Images | |
id: calibre | |
uses: calibreapp/image-actions@main | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
compressOnly: true | |
- name: Create Pull Request | |
if: steps.calibre.outputs.markdown != '' | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
title: Auto Compress Images | |
branch-suffix: timestamp | |
commit-message: Compress Images | |
body: ${{ steps.calibre.outputs.markdown }} |