reorganize dataset chapters #100
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow compresses images in PRs | |
name: Compress Images | |
on: | |
pull_request: | |
paths: | |
- '**.jpg' | |
- '**.jpeg' | |
- '**.png' | |
- '**.webp' | |
jobs: | |
compress: | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
name: Compress Images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Compress Images | |
uses: calibreapp/[email protected] | |
with: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} |