Update google_fonts' fonts #33
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
# Runs a generator script to update the fonts in the google_fonts package. | |
# Updates the CHANGELOG, pubspec, and creates a pull request if there are changes. | |
name: Update google_fonts' fonts | |
on: | |
schedule: | |
- cron: "30 1 1,15 * *" | |
workflow_dispatch: # Enable manual run from Github | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
update-fonts: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
actions: write # Required for the cancel action | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Clone Flutter repository with beta channel | |
uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 # v1.5.3 | |
with: | |
channel: beta | |
cache: true | |
- run: flutter pub get | |
working-directory: packages/google_fonts | |
- run: dart pub global activate cider | |
- run: dart generator/generator.dart | |
working-directory: packages/google_fonts | |
- run: cider version | |
id: new_version | |
working-directory: packages/google_fonts | |
- run: dart format | |
working-directory: packages/google_fonts | |
- name: Read families_diff file | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
id: get_families_diff | |
with: | |
script: | | |
const fs = require('fs'); | |
return fs.readFileSync('packages/google_fonts/generator/families_diff','utf8').toString(); | |
result-encoding: string | |
- name: Cancel workflow if there is no diff | |
uses: andymckay/cancel-action@271cfbfa11ca9222f7be99a47e8f929574549e0a # v0.4 | |
if: steps.get_families_diff.outputs.result == '' | |
- name: If cancelling workflow, allow for enough time to do so | |
run: sleep 15s | |
shell: bash | |
if: steps.get_families_diff.outputs.result == '' | |
- uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc # v6.0.1 | |
with: | |
token: ${{ secrets.MATERIAL_ROBOT_TOKEN }} | |
committer: material-robot <[email protected]> | |
commit-message: | | |
[google_fonts] update fonts | |
${{ steps.get_families_diff.outputs.result }} | |
base: main | |
branch: create-pull-request/update | |
delete-branch: true | |
author: material-robot <[email protected]> | |
title: Update `google_fonts` to ${{ steps.new_version.outputs.result }} | |
body: | | |
# Summary | |
${{ steps.get_families_diff.outputs.result }} | |
Please note that all existing fonts are subject to being updated. |