Skip to content

Commit

Permalink
Link to documentation-theme-jekyll with submodules and update daily
Browse files Browse the repository at this point in the history
  • Loading branch information
MattGrossi-NOAA committed Jan 18, 2024
1 parent 6709df0 commit 52955f3
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/sync_theme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: sync theme submodules

on:
push:
branches: gh-pages

schedule:
- cron: "00 14 * * *"

workflow_dispatch:


jobs:
sync_theme_submodules:
if: github.repository_owner == 'MattGrossi-NOAA' # only run if I own repo (change if transferred to organization)
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v3

- 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 "[email protected]"
git add -A
timestamp=$(date -u)
git commit -m "Update theme on: ${timestamp}" || exit 0
git push
7 changes: 7 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[submodule "documentation-theme-jekyll"]
path = theme
url = https://github.com/MattGrossi-NOAA/documentation-theme-jekyll
[submodule "_data/navbars_theme"]
path = _data/navbars
url = https://github.com/MattGrossi-NOAA/documentation-theme-jekyll
branch = navbars

0 comments on commit 52955f3

Please sign in to comment.