update-repo #1019
This file contains hidden or 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: 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 |