Delete Deploy Keys #10
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: Delete Deploy Keys | |
on: | |
schedule: | |
- cron: '*/5 * * * *' | |
jobs: | |
delete_deploy_keys: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Pip3 | |
run: | | |
pip install requests==2.31.0 | |
- name: Run script | |
run: | | |
python scripts/delete_deploy_keys.py | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} |