grab jvs and parse into stuff and fonts #20
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: grab jvs and parse into stuff | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 30 18 * * 5 | |
jobs: | |
jvs-update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: fetch, parse | |
run: cd scripts; cargo run | |
- name: create pr | |
id: cpr | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: weekly jvs update | |
committer: GitHub <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
signoff: false | |
branch: jvs-update | |
delete-branch: true | |
title: 'weekly jvs update' | |
assignees: berrymot | |
reviewers: berrymot |