Update Standard Library Dependency Graph #1216
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 Standard Library Dependency Graph | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 12 * * *' | |
jobs: | |
create: | |
name: Update Standard Library Dependency Graph | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install Python Packages | |
run: | | |
pip install graphviz | |
pip install requests | |
sudo apt-get install graphviz | |
pip install retry | |
pip install PyGithub | |
pip install cryptography | |
- name: Get Dependencies and Update Dependency Graph | |
run: | | |
python dependabot/update_stdlib_dependency_graph.py | |
env: | |
BALLERINA_BOT_USERNAME: ${{ secrets.BALLERINA_BOT_USERNAME }} | |
BALLERINA_BOT_TOKEN: ${{ secrets.BALLERINA_BOT_TOKEN }} | |
BALLERINA_BOT_EMAIL: ${{ secrets.BALLERINA_BOT_EMAIL }} | |
BALLERINA_REVIEWER_BOT_TOKEN: ${{ secrets.BALLERINA_REVIEWER_BOT_TOKEN }} |