-
-
Notifications
You must be signed in to change notification settings - Fork 16
31 lines (30 loc) · 872 Bytes
/
schedule.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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