-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Github actions runner will run this script on a schedule | ||
|
||
name: Update Dialogues from Voices of Wynn | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * *' # Runs at midnight | ||
|
||
jobs: | ||
update-labels: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Update Dialogues from Voices of Wynn | ||
run: | | ||
./Generators/update_voices_dialogues.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 dialogues from Voices of Wynn" | ||
title: "chore: [auto-generated] Update dialogues from Voices of Wynn" | ||
body: | | ||
The Voices of Wynn repository has been updated with new dialogue data. | ||
This PR has been automatically generated. | ||
branch: update-dialogues |