mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 04:39:03 +00:00
30 lines
773 B
YAML
30 lines
773 B
YAML
name: 'update parent repositories'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
sync:
|
|
name: update parent
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
repo: ['notion-enhancer/extension', 'notion-enhancer/desktop']
|
|
steps:
|
|
- name: checkout repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
token: ${{ secrets.CI_TOKEN }}
|
|
submodules: true
|
|
repository: ${{ matrix.repo }}
|
|
- name: pull updates
|
|
run: |
|
|
git pull --recurse-submodules
|
|
git submodule update --remote --recursive
|
|
- name: commit changes
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: '[${{ github.event.repository.name }}] ${{ github.event.head_commit.message }}'
|