Image Resizer #53
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
name: Image Resizer | |
on: | |
workflow_dispatch: | |
schedule: | |
# See https://crontab.guru/#0_17_*_*_6 | |
- cron: '0 17 * * 6' | |
jobs: | |
resize-image: | |
if: github.repository == 'phpid-jakarta/phpid-learning' | |
name: Resize big image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- uses: pnpm/[email protected] | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 7.5.1 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
run: | | |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run image resizer script | |
run: pnpm run script:resize | |
- name: Modify last update | |
run: | | |
d=`date '+%Y-%m-%dT%H:%M:%SZ'` | |
echo $d > LAST_UPDATED | |
- name: Commit compressed image | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "mazipan" | |
git add -A | |
git commit -m "CI: Auto resize image π" | |
- uses: actions/cache@v3 | |
name: Cache project | |
with: | |
path: '.' | |
key: ${{ runner.os }}-${{ github.sha }}-cache-project | |
restore-keys: | | |
${{ runner.os }}-${{ github.sha }}-cache-project | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
token: ${{ secrets.PERSONAL_TOKEN }} | |
delete-branch: true | |
title: 'CHORE: [BOT] Auto resize image' | |
reviewers: mazipan | |
labels: | | |
bot | |
automerge | |
- name: Check outputs | |
if: ${{ steps.cpr.outputs.pull-request-number }} | |
run: | | |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | |
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |