Skip to content

change employee name #18

change employee name

change employee name #18

Workflow file for this run

name: Auto Resize Images
on:
pull_request:
jobs:
resize:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install Pillow
- name: Run resize script
run: |
python3 auto-resize.py
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Add edited photos"
git push