mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-12 00:08:59 +01:00
52edf180c5
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 lines
750 B
YAML
33 lines
750 B
YAML
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: Checkout Repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Compress Images
|
|
uses: calibreapp/image-actions@1.1.0
|
|
with:
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|