mirror of
https://github.com/open-goal/jak-project
synced 2026-05-23 23:05:43 -04:00
87e7ed54ec
Bumps [EndBug/add-and-commit](https://github.com/EndBug/add-and-commit) from 8 to 9. - [Release notes](https://github.com/EndBug/add-and-commit/releases) - [Changelog](https://github.com/EndBug/add-and-commit/blob/main/CHANGELOG.md) - [Commits](https://github.com/EndBug/add-and-commit/compare/v8...v9) --- updated-dependencies: - dependency-name: EndBug/add-and-commit dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
812 B
YAML
27 lines
812 B
YAML
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@v9
|
|
with:
|
|
default_author: github_actor
|
|
author_name: "OpenGOALBot"
|
|
author_email: "OpenGOALBot@users.noreply.github.com"
|
|
message: "Updating Controller Database"
|