-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (33 loc) · 956 Bytes
/
update-repo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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