2024-04-27 19:34:03 +02:00
|
|
|
name: CRON
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * *'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
update:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: update compose-spec submodule
|
|
|
|
run: |
|
|
|
|
git submodule update --init --recursive
|
|
|
|
git submodule update --remote --recursive
|
|
|
|
- name: Commit changes
|
|
|
|
run: |
|
2024-04-27 19:36:28 +02:00
|
|
|
git commit -am "chore: update submodules" || echo "No changes to commit."
|
2024-04-27 19:34:03 +02:00
|
|
|
git push
|