Files
calcom-docker/.github/workflows/update-submodules.yml
noah c8b8d1dd0c
Some checks failed
Build and push image to DockerHub / build (push) Has been cancelled
Update .github/workflows/update-submodules.yml
2025-05-31 16:54:34 +00:00

27 lines
604 B
YAML

name: Update Calendso
on:
schedule:
- cron: "0 4 * * *"
workflow_dispatch: ~
jobs:
sync:
name: 'Submodules Sync'
runs-on: linux_arm64
defaults:
run:
shell: bash
steps:
- name: checkout
uses: actions/checkout@v3
- name: Git submodule update
run: |
git submodule update --remote --init
- name: Commit
run: |
git config user.email "actions@github.com"
git config user.name "actions-user"
git commit -am "Auto updated submodule references" && git push || echo "No changes to commit"