Skip to content

update-repo

update-repo #1019

Workflow file for this run

name: update-repo
on:
workflow_dispatch:
schedule:
- cron: "48 9,21 * * *" # twice a day
permissions:
contents: write
jobs:
update_repo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
- run: composer install --no-interaction --no-dev
- name: ___RUN___
run: |
php run.php update
if [ $? -eq 0 ]; then
if git status | grep -q "nothing to commit"; then
echo "Nothing to commit."
else
git config user.name github-action
git config user.email [email protected]
git commit -am 'Automated commit: update packages.json'
git push
fi
else
echo "ERROR: Update failed."
exit 1
fi