Skip to content

Commit 1908bc4

Browse files
authored
Merge pull request #75 from camriddell/master
Auto Pull REMARKs via GitHub Action
2 parents 4e419d4 + edbb67d commit 1908bc4

27 files changed

+96
-1141
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Copy REMARK metadata
2+
on:
3+
push:
4+
branches:
5+
- master
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write
10+
jobs:
11+
copy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
ref: master
17+
- name: set up Python
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: '3.11.x'
21+
- name: install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
python -m pip install pyyaml==6.0.0
25+
- name: copy metadata
26+
run: python scripts/populate_materials.py
27+
- name: update gh-pages branch
28+
run: |
29+
git config --global user.name github-actions
30+
git config --global user.email [email protected]
31+
git checkout --orphan gh-pages
32+
git add .
33+
git commit -m "autopull REMARKs $(date)"
34+
git push --force origin gh-pages

_materials/Aiyagari.md

-51
This file was deleted.

_materials/AiyagariIdiosyncratic/Archive/Table_SavingRate.md

Whitespace-only changes.

_materials/AiyagariIdiosyncratic/README.md

-45
This file was deleted.

_materials/BayerLuetticke.md

-50
This file was deleted.

_materials/BlanchardPA2019.md

-47
This file was deleted.

_materials/BufferStock-LifeCycle.md

-52
This file was deleted.

_materials/BufferStockTheory.md

-57
This file was deleted.

0 commit comments

Comments
 (0)