Check images #10
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: Check images | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 17 * * 2' # 9AM PST (5PM UTC) on Tuesday mornings | |
env: | |
BOT_NAME: nr-opensource-bot | |
BOT_EMAIL: [email protected] | |
jobs: | |
check-images: | |
name: Convert or delete | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
ref: develop | |
persist-credentials: false | |
- name: Setup node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Remove unused images | |
run: yarn remove-unused-images | |
- name: Convert images to WEBP | |
run: yarn convert-to-webp -g | |
- name: Commit changes | |
id: commit-changes | |
run: | | |
git config --local user.email "${{ env.BOT_EMAIL }}" | |
git config --local user.name "${{ env.BOT_NAME }}" | |
git add src/ | |
git commit -m 'chore: remove unused images & convert to webp' | |
echo "commit=true" >> $GITHUB_OUTPUT | |
- name: Push Commit | |
if: steps.commit-changes.outputs.commit == 'true' | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.DEVEX_OPENSOURCE_BOT_TOKEN }} | |
branch: develop |