Publications API #435
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: Publications API | |
on: | |
schedule: | |
# # At 0:30 UTC on everyday (6:00 AM in Sri Lanka) | |
- cron: "30 0 * * *" | |
# Enables a button on Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@master | |
with: | |
ref: main | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install Python Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests pytz | |
- name: Generate Publication files | |
run: | | |
cd ./python_scripts | |
python3 publications.py | |
cd ../ | |
- name: Generate filtered Publication lists | |
run: | | |
cd ./python_scripts | |
python3 publications_filter.py | |
cd ../ | |
- name: Send the notifications to Discord Webhook | |
run: | | |
cd ./python_scripts | |
python3 publication_notifications.py | |
cd ../ | |
env: | |
discord_webhook: ${{ secrets.PUBLICATIONAPI_WEBHOOK }} | |
- name: Commit and push into the main branch | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add --all | |
git commit -m "Publications API was updated by GitHub Actions" || echo "No changes to commit on Publications API" | |
git push |