Generate Monkeytype Icon and README #467
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: Generate Monkeytype Icon and README | |
on: | |
schedule: | |
- cron: "0 */24 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
pip install playwright | |
pip install beautifulsoup4 | |
pip install requests | |
- name: Install playwright | |
run: | | |
playwright install | |
- name: Run monkeytype-icon.py | |
run: python monkeytype-icon.py | |
- name: Configure git | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email github-actions[bot]@users.noreply.github.com | |
- name: Commit and push changes | |
run: | | |
if git diff-index --quiet HEAD --; then | |
echo "No changes detected." | |
else | |
git add . | |
git commit -m "chore: update monkeytype icon" | |
fi | |
continue-on-error: true | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
branch: master | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |