Generate Active Permissions #142
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: Generate Active Permissions | |
on: | |
schedule: | |
- cron: "0 0 * * 3" | |
workflow_dispatch: | |
jobs: | |
refresh_active_perms: | |
runs-on: ubuntu-latest | |
env: | |
INFURA_KEY: ${{ secrets.INFURA_KEY }} | |
ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }} | |
DRPC_KEY: ${{ secrets.DRPC_KEY }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: Update Files | |
id: update | |
run: | | |
pip3 install -r bal_addresses/requirements.txt | |
python3 gen_current_permissions.py | |
git add -A | |
- name: pull-request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
commit-message: "Scheduled update to active permissions" | |
title: "Scheduled update to active permissions" | |
branch: "gha-permissions" | |
reviewers: "Tritum-VLK" | |
assignees: "Tritum-VLK" | |
labels: "Automatic" |