FossifyGallery/.github/workflows/image-minimizer.yml

35 lines
813 B
YAML
Raw Normal View History

2024-01-27 00:01:27 +05:30
name: Image Minimizer
on:
issue_comment:
types: [created, edited]
issues:
types: [opened, edited]
2024-11-17 22:42:38 +05:30
pull_request_target:
2024-01-27 00:01:27 +05:30
types: [opened, edited]
jobs:
try-minimize:
runs-on: ubuntu-latest
steps:
2024-07-24 16:11:54 +05:30
- uses: actions/checkout@v4
2024-11-17 23:35:09 +05:30
with:
token: ${{ secrets.FOSSIFYBOT_TOKEN }}
2024-01-27 00:01:27 +05:30
2024-07-24 16:11:54 +05:30
- uses: actions/setup-node@v4
2024-01-27 00:01:27 +05:30
with:
node-version: 16
- name: Install probe-image-size
run: npm i probe-image-size@7.2.3 --ignore-scripts
- name: Minimize simple images
2024-07-24 16:11:54 +05:30
uses: actions/github-script@v7
2024-01-27 00:01:27 +05:30
timeout-minutes: 3
with:
2024-11-17 23:19:40 +05:30
github-token: ${{ secrets.FOSSIFYBOT_TOKEN }}
2024-01-27 00:01:27 +05:30
script: |
const script = require('.github/workflows/image-minimizer.js');
await script({github, context});