Skip to content

TrackCredentials

TrackCredentials #9762

Workflow file for this run

name: TrackCredentials
on:
schedule:
- cron: '0 * * * *' # hourly
workflow_dispatch:
jobs:
http_request:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: CheckCredly
env:
MYSECRET: ${{ secrets.MYSECRET }}
run: |
pip install requests
python main.py
# LAZY
python ddupe.py
- name: Commit changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "s50600822"
git add .
git diff-index --quiet HEAD || git commit -m "save"
git push