Ethereum, NEAR, StarkNet, and Axelar Auto Commit #13689
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: Ethereum, NEAR, StarkNet, and Axelar Auto Commit | |
on: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '*/1 * * * *' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
env: | |
USER_EMAIL: ${{ secrets.USER_EMAIL }} | |
USER_NAME: ${{ secrets.USER_NAME }} | |
jobs: | |
ethereum_auto_commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Pull latest changes | |
run: | | |
git pull origin master | |
- name: Run Ethereum script | |
run: | | |
chmod +x ethereum.sh | |
./ethereum.sh | |
- name: Configure Git identity | |
run: | | |
git config user.email "${{ secrets.USER_EMAIL }}" | |
git config user.name "${{ secrets.USER_NAME }}" | |
- name: Commit changes | |
run: | | |
git add -A | |
git commit -m "$(shuf -n1 -e "π₯ Hotfix" "β¨ Feature" "π Upgrade" "π οΈ Fix" "π§ Refactor" "π Investigate" "π‘ Improve" "π¦ Update" "π Optimize" "π¬ Comment" | awk '{print $0}') Ethereum network" | |
- name: Push changes | |
run: | | |
git push origin master | |
ethereum_holesky_auto_commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Pull latest changes | |
run: | | |
git pull origin master | |
- name: Run Ethereum Holesky script | |
run: | | |
chmod +x ethereum-holesky.sh | |
./ethereum-holesky.sh | |
- name: Configure Git identity | |
run: | | |
git config user.email "${{ secrets.USER_EMAIL }}" | |
git config user.name "${{ secrets.USER_NAME }}" | |
- name: Commit changes | |
run: | | |
git add -A | |
git commit -m "$(shuf -n1 -e "π₯ Hotfix" "β¨ Feature" "π Upgrade" "π οΈ Fix" "π§ Refactor" "π Investigate" "π‘ Improve" "π¦ Update" "π Optimize" "π¬ Comment" | awk '{print $0}') Ethereum network" | |
- name: Push changes | |
run: | | |
git push origin master | |
ethereum_sepolia_auto_commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Pull latest changes | |
run: | | |
git pull origin master | |
- name: Run Ethereum Sepolia script | |
run: | | |
chmod +x ethereum-sepolia.sh | |
./ethereum-sepolia.sh | |
- name: Configure Git identity | |
run: | | |
git config user.email "${{ secrets.USER_EMAIL }}" | |
git config user.name "${{ secrets.USER_NAME }}" | |
- name: Commit changes | |
run: | | |
git add -A | |
git commit -m "$(shuf -n1 -e "π₯ Hotfix" "β¨ Feature" "π Upgrade" "π οΈ Fix" "π§ Refactor" "π Investigate" "π‘ Improve" "π¦ Update" "π Optimize" "π¬ Comment" | awk '{print $0}') Ethereum network" | |
- name: Push changes | |
run: | | |
git push origin master | |
ethereum_beacon_auto_commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Pull latest changes | |
run: | | |
git pull origin master | |
- name: Run Ethereum Beacon script | |
run: | | |
chmod +x ethereum-beacon.sh | |
./ethereum-beacon.sh | |
- name: Configure Git identity | |
run: | | |
git config user.email "${{ secrets.USER_EMAIL }}" | |
git config user.name "${{ secrets.USER_NAME }}" | |
- name: Commit changes | |
run: | | |
git add -A | |
git commit -m "$(shuf -n1 -e "π₯ Hotfix" "β¨ Feature" "π Upgrade" "π οΈ Fix" "π§ Refactor" "π Investigate" "π‘ Improve" "π¦ Update" "π Optimize" "π¬ Comment" | awk '{print $0}') Ethereum network" | |
- name: Push changes | |
run: | | |
git push origin master | |
near_auto_commit: | |
runs-on: ubuntu-latest | |
needs: ethereum_auto_commit | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Pull latest changes | |
run: | | |
git pull origin master | |
- name: Run NEAR script | |
run: | | |
chmod +x near.sh | |
./near.sh | |
- name: Configure Git identity | |
run: | | |
git config user.email "${{ secrets.USER_EMAIL }}" | |
git config user.name "${{ secrets.USER_NAME }}" | |
- name: Commit changes | |
run: | | |
git add -A | |
git commit -m "$(shuf -n1 -e "π₯ Hotfix" "β¨ Feature" "π Upgrade" "π οΈ Fix" "π§ Refactor" "π Investigate" "π‘ Improve" "π¦ Update" "π Optimize" "π¬ Comment" | awk '{print $0}') NEAR network" | |
- name: Push changes | |
run: | | |
git push origin master | |
starknet_auto_commit: | |
runs-on: ubuntu-latest | |
needs: near_auto_commit | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Pull latest changes | |
run: | | |
git pull origin master | |
- name: Run StarkNet script | |
run: | | |
chmod +x starknet.sh | |
./starknet.sh | |
- name: Configure Git identity | |
run: | | |
git config user.email "${{ secrets.USER_EMAIL }}" | |
git config user.name "${{ secrets.USER_NAME }}" | |
- name: Commit changes | |
run: | | |
git add -A | |
git commit -m "$(shuf -n1 -e "π₯ Hotfix" "β¨ Feature" "π Upgrade" "π οΈ Fix" "π§ Refactor" "π Investigate" "π‘ Improve" "π¦ Update" "π Optimize" "π¬ Comment" | awk '{print $0}') StarkNet network" | |
- name: Push changes | |
run: | | |
git push origin master | |
axelar_auto_commit: | |
runs-on: ubuntu-latest | |
needs: starknet_auto_commit | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Pull latest changes | |
run: | | |
git pull origin master | |
- name: Run Axelar script | |
run: | | |
chmod +x axelar.sh | |
./axelar.sh | |
- name: Configure Git identity | |
run: | | |
git config user.email "${{ secrets.USER_EMAIL }}" | |
git config user.name "${{ secrets.USER_NAME }}" | |
- name: Commit changes | |
run: | | |
git add -A | |
git commit -m "$(shuf -n1 -e "π₯ Hotfix" "β¨ Feature" "π Upgrade" "π οΈ Fix" "π§ Refactor" "π Investigate" "π‘ Improve" "π¦ Update" "π Optimize" "π¬ Comment" | awk '{print $0}') Axelar network" | |
- name: Push changes | |
run: | | |
git push origin master |