| name: Compress Images |
| |
| on: |
| pull_request: |
| paths: |
| - '**.jpg' |
| - '**.jpeg' |
| - '**.png' |
| - '**.webp' |
| |
| permissions: |
| contents: read |
| |
| jobs: |
| build: |
| # Only run on Pull Requests within the same repository, and not from forks. |
| if: github.event.pull_request.head.repo.full_name == github.repository |
| name: calibreapp/image-actions |
| runs-on: ubuntu-latest |
| permissions: |
| # allow calibreapp/image-actions to update PRs |
| pull-requests: write |
| steps: |
| - name: Clone repository |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 |
| with: |
| persist-credentials: false |
| |
| - name: Compress Images |
| uses: calibreapp/image-actions@f32575787d333b0579f0b7d506ff03be63a669d1 # v1.4.1 |
| with: |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |