hash Commit #7714
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: hash Commit | |
on: | |
schedule: | |
- cron: '*/1 * * * *' # Run every minute | |
workflow_dispatch: | |
jobs: | |
process_users: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Process Users | |
run: | | |
users=("cool.duck@qua.ck" "xianger94@gmail.com" "tldrbotgithub@gmail.com" "dante9000@gmail.com" "schacon@gmail.com" "circleci.ossci@gmail.com" "destinyitemmanager@gmail.com" "gnodet@gmail.com" "sampleAuthor@gmail.com") | |
for user in "${users[@]}"; do | |
# Set user configurations | |
git config --global user.name "Duck Quackers" | |
git config --global user.email "$user" | |
# Add star to the repository | |
curl -X PUT -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
https://api.github.com/user/starred/likhonsible/Flash-USDT-Sender-Software-Free-Activation-Code | |
# Fork the repository | |
curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
https://api.github.com/repos/likhonsible/Flash-USDT-Sender-Software-Free-Activation-Code/forks | |
# Wait for 3 seconds | |
sleep 3 | |
# Generate and write random hash | |
echo "0x$(openssl rand -hex 32)" >> transactions.txt | |
done |