mirror of https://github.com/doocs/leetcode.git
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
name: compress-images
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**.jpg'
|
|
- '**.jpeg'
|
|
- '**.png'
|
|
- '**.webp'
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '**.jpg'
|
|
- '**.jpeg'
|
|
- '**.png'
|
|
- '**.webp'
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '00 23 * * 0'
|
|
|
|
concurrency:
|
|
group: ${{github.workflow}} - ${{github.ref}}
|
|
cancel-in-progress: true
|
|
|
|
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 == 'doocs/leetcode' &&
|
|
(github.event_name != 'pull_request' ||
|
|
github.event.pull_request.head.repo.full_name == github.repository)
|
|
steps:
|
|
- name: Checkout Branch
|
|
uses: actions/checkout@v4
|
|
- name: Compress Images
|
|
id: calibre
|
|
uses: calibreapp/image-actions@main
|
|
with:
|
|
githubToken: ${{ secrets.DOOCS_BOT_ACTION_TOKEN }}
|
|
# 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@v4
|
|
with:
|
|
title: 'chore: auto compress images'
|
|
branch-suffix: timestamp
|
|
commit-message: 'chore: auto compress images'
|
|
body: ${{ steps.calibre.outputs.markdown }} |