Upstream Monitor #147
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: Upstream Monitor | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 8 * * 1' | |
jobs: | |
upstream_check: | |
name: Upstream Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
cache: pip | |
- name: Install Python Deps | |
run: pip install -r requirements.txt | |
- name: Run Check Script | |
run: npm run build | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
commit-message: 'feat(deps): update font version' | |
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | |
title: 'feat(deps): update font version' | |
delete-branch: true | |
branch-suffix: short-commit-hash |