Update HUDs #29
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: Update HUDs | |
on: | |
workflow_dispatch: | |
inputs: | |
huds: | |
description: 'HUD ID(s), space separated' | |
required: true | |
type: string | |
concurrency: | |
group: ${{ github.repository }} | |
cancel-in-progress: true | |
jobs: | |
update_huds: | |
name: Update HUDs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Refresh hash | |
run: | | |
python utils/update_hash.py ${{ github.event.inputs.huds }} | |
- name: Commit | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git commit -am "HUD update: ${{ github.event.inputs.huds }}" || true | |
git push | |
check: | |
name: Check HUDs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
key: ${{ github.ref }} | |
path: .cache | |
- uses: pnpm/action-setup@v4.0.0 | |
with: | |
version: 7 | |
- name: Check | |
run: | | |
pnpm i | |
pnpm lint | |
pnpm check |