mirror of
https://github.com/ivuorinen/actions.git
synced 2026-01-26 11:34:00 +00:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
---
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
#
|
|
# Compress images on demand (workflow_dispatch), and at 11pm every Sunday (schedule).
|
|
# Open a Pull Request if any images can be compressed.
|
|
name: Compress Images on Demand
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
schedule:
|
|
- cron: '00 23 * * 0'
|
|
|
|
jobs:
|
|
CompressOnDemandOrSchedule:
|
|
name: calibreapp/image-actions
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: write
|
|
statuses: write
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- uses: ivuorinen/actions/set-git-config@main
|
|
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Compress Images
|
|
id: calibre
|
|
uses: calibreapp/image-actions@main
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
compressOnly: true
|
|
|
|
- name: Create New Pull Request If Needed
|
|
if: steps.calibre.outputs.markdown != ''
|
|
uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
title: Compressed Images Nightly
|
|
branch-suffix: timestamp
|
|
commit-message: Compressed Images
|
|
body: ${{ steps.calibre.outputs.markdown }}
|