Update #131
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 | |
on: | |
label: | |
types: | |
- created # for test | |
schedule: | |
- cron: '10 16 * * 0-4' | |
permissions: | |
contents: write | |
issues: write | |
jobs: | |
update_daily_papers: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Update papers | |
run: | | |
python main.py | |
- name: Commit and push changes | |
uses: github-actions-x/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
push-branch: 'main' | |
commit-message: '✏️ Update papers automatically.' | |
force-add: 'true' | |
files: README.md .github/ISSUE_TEMPLATE.md | |
name: zachysun | |
email: [email protected] | |
- name: Create an issue to notify | |
uses: JasonEtco/create-an-issue@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |