mirror of
https://github.com/ivuorinen/sysvinit-service-generator.git
synced 2026-01-26 03:24:03 +00:00
34 lines
1022 B
YAML
34 lines
1022 B
YAML
---
|
|
# Compress images on demand (workflow_dispatch).
|
|
# Open a Pull Request if any images can be compressed.
|
|
name: Compress Images on Demand
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
CompressOnDemandOrSchedule:
|
|
name: calibreapp/image-actions
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
|
|
|
|
- name: Compress Images
|
|
id: calibre
|
|
uses: calibreapp/image-actions@f32575787d333b0579f0b7d506ff03be63a669d1 # 1.4.1
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Create New Pull Request If Needed
|
|
if: steps.calibre.outputs.markdown != ''
|
|
uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0
|
|
with:
|
|
title: Compressed Images
|
|
branch-suffix: timestamp
|
|
commit-message: Compressed Images
|
|
body: ${{ steps.calibre.outputs.markdown }}
|