From 9312da8cd3d3e305b4448022fc1d711e05ae10d7 Mon Sep 17 00:00:00 2001 From: Jonah Lawrence Date: Tue, 6 Sep 2022 16:32:05 -0600 Subject: [PATCH] Delete image-actions.yml (#68) --- .github/workflows/image-actions.yml | 46 ----------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .github/workflows/image-actions.yml diff --git a/.github/workflows/image-actions.yml b/.github/workflows/image-actions.yml deleted file mode 100644 index 3a3218a..0000000 --- a/.github/workflows/image-actions.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Compress Images - -on: - pull_request: - paths: - - "**.jpg" - - "**.jpeg" - - "**.png" - - "**.webp" - workflow_dispatch: - -jobs: - build: - name: calibreapp/image-actions - runs-on: ubuntu-latest - - # Only run on main repo on and PRs that match the main repo - if: | - github.repository == 'DenverCoder1/Minimalistic-Wallpaper-Collection' && - (github.event_name != 'pull_request' || - github.event.pull_request.head.repo.full_name == github.repository) - steps: - - name: Checkout Branch - uses: actions/checkout@v2 - - - name: Compress Images - id: calibre - uses: calibreapp/image-actions@main - with: - githubToken: ${{ secrets.GITHUB_TOKEN }} - jpegQuality: 95 - jpegProgressive: false - pngQuality: 95 - webpQuality: 95 - # For non-Pull Requests, run in compressOnly mode and we'll PR after - compressOnly: ${{ github.event_name != 'pull_request' }} - - - name: Create Pull Request - # If it's not a Pull Request then commit any changes as a new PR - if: github.event_name != 'pull_request' && 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 }}