Update TOC Interface version(s) #313
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
name: Update TOC Interface version(s) | |
on: | |
schedule: | |
- cron: 0 12 * * * | |
# push: | |
# branches: | |
# - master | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v4 | |
- name: Update TOC Interface version classic | |
uses: cont1nuity/toc-interface-updater@master | |
with: | |
flavor: classic # this is the default | |
future: false # this is optional | |
replaceflavor: true # this is optional | |
- name: Update TOC Interface version classic_era | |
uses: cont1nuity/toc-interface-updater@master | |
with: | |
flavor: classic_era # this is the default | |
future: false # this is optional | |
replaceflavor: true # this is optional | |
- name: Update TOC Interface version retail | |
uses: cont1nuity/toc-interface-updater@master | |
with: | |
flavor: retail # this is the default | |
future: false # this is optional | |
replaceflavor: true # this is optional | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
title: Update Interface version | |
commit-message: Update Interface version | |
branch: interface-version | |
delete-branch: true |