Skip to content

sync theme submodules #984

sync theme submodules

sync theme submodules #984

Workflow file for this run

name: sync theme submodules
# no permissions by default
permissions: {}
on:
push:
branches: gh-pages
schedule:
- cron: "00 14 * * *"
workflow_dispatch:
jobs:
sync_theme_submodules:
if: github.repository_owner == 'ioos' # only run if ioos owns repo
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: gh-pages
fetch-depth: 0
persist-credentials: false
- name: submodule checkout
run: |
git submodule update --init
- name: check submodule status
run: |
git submodule status
- name: Update theme from submodules
run: |
git submodule update --remote --merge
- name: check submodule status 2
run: |
git submodule status
- name: Commit and push if it changed
run: |
git config user.name "Automated"
git config user.email "actions@users.noreply.github.com"
git add -A
timestamp=$(date -u)
git commit -m "Update theme on: ${timestamp}" || exit 0
git push