You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added information about using github action (alshedivat#1226)
By using this Github action it is possible to keep the derived
repository up-to-date with its template.
I am currently using this to keep my website up to date with the
template repository. An example of the PR this action creates can be
seen [here](george-gca/george-gca.github.io#13).
Signed-off-by: George Araújo <[email protected]>
@@ -317,13 +317,40 @@ In its default configuration, al-folio will copy the top-level `README.md` to th
317
317
318
318
#### Upgrading from a previous version
319
319
320
-
If you installed **al-folio** as described above, you can upgrade to the latest version as follows:
320
+
If you installed **al-folio** as described above, you can configure a [github action](https://github.com/AndreasAugustin/actions-template-sync) to automatically sync your repository with the latest version of the theme:
321
+
322
+
```yaml
323
+
name: Sync from template
324
+
on:
325
+
# cronjob trigger
326
+
schedule:
327
+
- cron: "0 0 1 * *"
328
+
# manual trigger
329
+
workflow_dispatch:
330
+
jobs:
331
+
repo-sync:
332
+
runs-on: ubuntu-latest
333
+
steps:
334
+
# To use this repository's private action, you must check out the repository
0 commit comments