Update TOC Interface version(s) #13
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: | |
workflow_dispatch: | |
workflow_run: | |
workflows: ['Luacheck'] | |
types: | |
- completed | |
#schedule: | |
#- cron: "0 * * * *" | |
jobs: | |
run: | |
name: TOCcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v4 | |
- name: Checking Vanilla | |
uses: p3lim/toc-interface-updater@v3 | |
with: | |
flavor: classic_era | |
future: false | |
- name: Checking Wrath | |
uses: p3lim/toc-interface-updater@v3 | |
with: | |
flavor: classic | |
future: false | |
- name: Checking Retail | |
uses: p3lim/toc-interface-updater@v3 | |
with: | |
flavor: retail | |
future: false | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: 'Update TOC interface version(s)' | |
add: '.' |