Skip to content

Update japanese url #37

Update japanese url

Update japanese url #37

# Image Actions will run in the following scenarios:
# - on Pull Requests containing images (not including forks)
# - on pushing of images to `main` (for forks)
# - on demand (https://github.blog/changelog/2020-07-06-github-actions-manual-triggers-with-workflow_dispatch/)
# - at 11 PM every Sunday in anything gets missed with any of the above scenarios
# For Pull Requests, the images are added to the PR.
# For other scenarios, a new PR will be opened if any images are compressed.
name: Compress images
on:
pull_request:
paths:
- '**.jpg'
- '**.jpeg'
- '**.png'
- '**.webp'
- '**.avif'
push:
branches:
- main
paths:
- '**.jpg'
- '**.jpeg'
- '**.png'
- '**.webp'
- '**.avif'
workflow_dispatch:
schedule:
- cron: '00 23 * * 0'
jobs:
build:

Check failure on line 30 in .github/workflows/calibreapp-image-actions.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/calibreapp-image-actions.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
name: calibreapp/image-actions
runs-on: ubuntu-latest
# Only run on main repo on and PRs that match the main repo.
if: |
github.repository == 'aliceinwire/aliceinwire.github.io' &&
(github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name == github.repository) &&
!(github.event_name == 'push' &&
(github.actor == 'github-actions[bot]' ||
contains(github.event.head_commit.message, 'Compress Images') ||
contains(github.event.head_commit.message, 'Auto Compress Images')))
concurrency:
group: image-actions-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout Branch
uses: actions/checkout@v4
- name: Compress Images
id: calibre
uses: calibreapp/image-actions@main
with:
# For non-Pull Requests, run in compressOnly mode and we'll PR after.
compressOnly: ${{ github.event_name != 'pull_request' }}
# PRs keep the default ~5%; push/schedule use 15%.
minPctChange: ${{ github.event_name == 'pull_request' && '5' || '15' }}
# lock in image quality.
jpegQuality: '85'
jpegProgressive: false
pngQuality: '80'
webpQuality: '85'
avifQuality: '75'
- 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@v4
with:
title: Auto Compress Images
branch-suffix: timestamp
commit-message: Compress Images
body: ${{ steps.calibre.outputs.markdown }}