Skip to content

Commit

Permalink
ci: add submodules status workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Nov 26, 2024
1 parent e1a33e6 commit 25acf46
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/submodules_status.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Submodules Status

on: workflow_dispatch

jobs:
build:
name: Submodules Status
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive

- name: Update Submodules
run: |
git -c color.ui=always submodule update --remote --merge
git -c color.ui=always status

0 comments on commit 25acf46

Please sign in to comment.