snapshot update dydx #38250
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: Update Governance Info | ||
on: | ||
schedule: | ||
# - cron: '*/15 * * * *' | ||
workflow_dispatch: | ||
jobs: | ||
update-info: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Run update_governance_info.sh script | ||
run: | | ||
chmod +x ./update_governance_info.sh | ||
./update_governance_info.sh | ||
continue-on-error: true | ||
- name: Commit and push if there are changes | ||
run: | | ||
git config --local user.email "action@github.com" | ||
git config --local user.name "GitHub Action" | ||
git add -A | ||
git diff --quiet && git diff --staged --quiet || git commit -m "Update governance info" | ||
git push |