Check for Font Updates #1339
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: Check for Font Updates | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '12' | |
- run: npm install | |
- name: Check for font updates | |
id: updates | |
run: npm run check-for-font-updates && echo ::set-output name=valid::1 || true | |
- name: Get Timestamp | |
if: ${{ steps.script.updates.valid }} | |
id: timestamp | |
run: echo ::set-output name=value::$(date +%s) | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
if: ${{ steps.script.updates.valid }} | |
with: | |
commit-message: "feat(font): auto-update font from remote cdn" | |
title: "feat(font): auto-update font from remote cdn ${{ steps.timestamp.outputs.value }}" | |
body: | | |
- check for font updates | |
branch: check-for-font-updates-${{ steps.timestamp.outputs.value }} |