mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +00:00
21 lines
455 B
YAML
21 lines
455 B
YAML
name: 'update submodules'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
sync:
|
|
name: 'update submodules'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- name: pull updates
|
|
run: |
|
|
git pull --recurse-submodules
|
|
git submodule update --remote --recursive
|
|
- name: commit changes
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|