Update WP composer repo #826
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: Update WP composer repo | |
on: | |
workflow_dispatch: | |
# Triggers the workflow twice a day | |
schedule: | |
- cron: "48 9,21 * * *" | |
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: Update packages.json repo file | |
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 github-action@github.com | |
git commit -am 'Automated commit: update packages.json' | |
git push | |
fi | |
else | |
echo "ERROR: Update failed." | |
exit 1 | |
fi |