Posts #617
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: Posts | |
on: | |
schedule: | |
- cron: '0 1 * * *' # runs at 10:00 JST everyday | |
workflow_dispatch: | |
jobs: | |
astro-ph-ga: | |
name: Post (astro-ph.GA) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
pip install arxiv-post==0.7.0 | |
playwright install chromium | |
- name: Post articles to Slack | |
run: | | |
arxiv-post slack \ | |
--categories astro-ph.GA \ | |
--target_lang ja \ | |
--slack_webhook_url ${{ secrets.SLACK_WEBHOOK_URL_GA }} \ | |
--debug | |
astro-ph-im: | |
name: Post (astro-ph.IM) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
pip install arxiv-post==0.7.0 | |
playwright install chromium | |
- name: Post articles to Slack | |
run: | | |
arxiv-post slack \ | |
--categories astro-ph.IM \ | |
--target_lang ja \ | |
--slack_webhook_url ${{ secrets.SLACK_WEBHOOK_URL_IM }} \ | |
--deepl_api_key ${{ secrets.DEEPL_API_KEY }} \ | |
--debug | |
astro-ph-he: | |
name: Post (astro-ph.HE) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
pip install arxiv-post==0.7.0 | |
playwright install chromium | |
- name: Post articles to Slack | |
run: | | |
arxiv-post slack \ | |
--categories astro-ph.HE \ | |
--target_lang ja \ | |
--slack_webhook_url ${{ secrets.SLACK_WEBHOOK_URL_HE }} \ | |
--debug |