Skip to content

Commit

Permalink
Create update-submodules.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman authored Sep 30, 2023
1 parent ffecf04 commit 4174f5c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/update-submodules.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Update submodules"
on:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
update-submodules:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Update submodules
run: |
git submodule update --init --recursive
git submodule update --recursive --remote
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
title: Update submodules
labels: merge-queue

0 comments on commit 4174f5c

Please sign in to comment.