game: add SDL controller database (#1328)

* game: add SDL controller database

* lint: formatting
This commit is contained in:
Tyler Wilding
2022-04-20 18:20:59 -04:00
committed by GitHub
parent 5369932fcd
commit 0d4b5f8df4
5 changed files with 1671 additions and 3 deletions
@@ -0,0 +1,26 @@
name: Update Controller Database
on:
schedule:
- cron: "0 16 * * 1" # every monday @ 12pm EST - https://crontab.guru/#0_16_*_*_1
jobs:
update-controller-db:
if: github.repository == 'open-goal/jak-project'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.BOT_PAT }}
- name: Get Latest DB
run: |
wget -O ./game/assets/sdl_controller_db.txt https://raw.githubusercontent.com/gabomdq/SDL_GameControllerDB/master/gamecontrollerdb.txt
- name: commit version bump
uses: EndBug/add-and-commit@v8
with:
default_author: github_actor
author_name: "OpenGOALBot"
author_email: "OpenGOALBot@users.noreply.github.com"
message: "Updating Controller Database"