Skip to content

Commit

Permalink
Create update-submodule.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ponchale authored Oct 9, 2023
1 parent eb72201 commit 3376fc7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/update-submodule.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Update Submodules

on:
workflow_dispatch:
schedule:
- cron: "0 15 * * *"

jobs:
update-submodules:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
submodules: "recursive"

- name: Update Submodules
run: |
git submodule update --init --recursive
git add .
git commit -m "[FB bot] Submodule | Update Submodules"
git push

0 comments on commit 3376fc7

Please sign in to comment.