Update Stars, Pulls and Downloads From APIs #57
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 Stars, Pulls and Downloads From APIs | |
on: | |
schedule: | |
- cron: '0 8 * * 1' # Runs at 8:00 AM every Monday | |
workflow_dispatch: | |
jobs: | |
fetchAndUpdate: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
token: ${{ secrets.DATA_PUSH_TOKEN }} | |
- name: Add dependencies | |
run: | | |
python -m pip install requests | |
python -m pip install tqdm | |
python -m pip install pypistats | |
- name: Set pepy.tech API key | |
run: | | |
echo "PYPI_API_KEY=${{ secrets.PYPI_API_KEY }}" >> $GITHUB_ENV | |
- name: Update files after fetching data from APIs | |
run: | | |
python docs/tools/vdb_table/fetch-data.py | |
- name: Commit and push if there are changes | |
env: | |
GIT_AUTHOR_NAME: Arunesh Singh | |
GIT_AUTHOR_EMAIL: 43724007+AruneshSingh@users.noreply.github.com | |
GIT_COMMITTER_NAME: Arunesh Singh | |
GIT_COMMITTER_EMAIL: 43724007+AruneshSingh@users.noreply.github.com | |
GITHUB_TOKEN: ${{ secrets.DATA_PUSH_TOKEN }} | |
run: | | |
git add docs/tools/vdb_table/data/. | |
git commit -m "Update Stars, Pulls & Downloads" || exit 0 # Exit 0 if no changes | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.DATA_PUSH_TOKEN }} |