This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update README with Sorted Papers Content | |
on: | |
push: | |
paths: | |
- 'update_template_or_data/update_paper_list.md' # 监听 update_paper_list.md 文件的更新 | |
- 'update_template_or_data/utils/scripts/sort_by_date.py' # 监听 update_template_or_data/utils/scripts/sort_by_date.py 脚本的更新 | |
- 'update_template_or_data/update_readme_template.md' # 监听 update_template_or_data/utils/scripts/sort_by_date.py 脚本的更新 | |
- '.github/workflows/main.yml' | |
# schedule: | |
# - cron: '0 0 * * *' # 每天定时运行(0点) | |
jobs: | |
update-readme: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python environment | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' # 使用最新的 Python 版本 | |
- name: Install dependencies | |
run: | | |
pip install pandas matplotlib seaborn wordcloud | |
- name: Run update_template_or_data/utils/scripts/sort_by_date.py | |
run: | | |
python update_template_or_data/utils/scripts/sort_by_date.py | |
- name: Update temp_readme.md with sorted papers content | |
run: | | |
# 读取更新后的 update_template_or_data/update_paper_list.md 内容 | |
CONTENT=$(cat update_template_or_data/update_paper_list.md) | |
# 使用 sed 插入 content 到 temp_readme.md 的占位符位置 | |
sed -i '/{{insert_all_papers_here}}/{ | |
r /dev/stdin | |
d | |
}' update_template_or_data/update_readme_template.md <<< "$CONTENT" | |
- name: Overwrite README.md with updated temp_readme.md | |
run: | | |
# 覆盖 README.md | |
cp update_template_or_data/update_readme_template.md README.md | |
- name: Commit changes | |
run: | | |
git config --global user.name "github-actions" | |
git config --global user.email "[email protected]" | |
git add README.md paper_by_env paper_by_author | |
git commit -m "Update README with sorted content from update_template_or_data/update_paper_list.md" | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |