-
Notifications
You must be signed in to change notification settings - Fork 40
44 lines (38 loc) · 1.25 KB
/
TOCBump.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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