Update Identifications Key Data #8084
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
# Github actions runner will run this script on a schedule | |
name: Update Identifications Key Data | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 * * * *' # Runs every hour | |
jobs: | |
update-id-keys: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Update Identification Keys Data | |
run: | | |
chmod +x ./Generators/update_identification_keys.sh | |
./Generators/update_identification_keys.sh | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
with: | |
token: ${{ secrets.PRIVATE_TOKEN }} | |
labels: auto-generated | |
committer: 'WynntilsBot <[email protected]>' | |
author: 'WynntilsBot <[email protected]>' | |
commit-message: "chore: [auto-generated] Update identification keys from upstream" | |
title: "chore: [auto-generated] Update identification keys from upstream" | |
body: | | |
Upstream Wynncraft API has been updated with new identification keys. | |
Please verify that the ids are correctly incremented, old ids are not removed, and the new ids are incrementing from the last id. | |
If the ids reach 255, please reach out to the Artemis team to discuss how to handle this. Most likely the gear chat encoding needs to have a new version created. | |
This PR has been automatically generated. | |
branch: update-id-keys |