mirror of
https://github.com/misenhower/splatoon3.ink.git
synced 2026-03-21 17:54:13 -05:00
27 lines
654 B
YAML
27 lines
654 B
YAML
name: Update query hashes
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '30 * * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check-and-create-pr:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Download file from URL
|
|
run: curl -o app/splatnet/queryHashes.json https://raw.githubusercontent.com/imink-app/SplatNet3/master/Data/splatnet3_webview_data.json
|
|
|
|
- name: Create PR
|
|
uses: peter-evans/create-pull-request@v6
|
|
with:
|
|
title: Update query hashes
|
|
commit-message: Update query hashes
|
|
branch: update-query-hashes
|
|
body: Update query hashes
|
|
delete-branch: true
|