-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (33 loc) · 1.1 KB
/
auto-update-assets.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
name: Auto Update Assets
on:
push:
branches:
- 'main'
schedule:
- cron: '0 0 * * *'
jobs:
auto_update_assets:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Update Client Extensions Samples
working-directory: ./internal/assets/tpl/client_extension/liferay-client-extensions-samples
run: |
mv git .git
git reset --hard HEAD
git clean -d -f .
git pull
mv .git git
- name: Commit Client Extensions Changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
git restore ./internal/assets/tpl/client_extension/liferay-client-extensions-samples/git
git add ./internal/assets/tpl/client_extension/
git commit -am "chore: auto update client extensions samples" || echo "We're good for now. See you next time!"
git push