ci: Track versions 4.0 and 4.4

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2021-05-19 04:19:36 +02:00
parent 71f6bcb3d1
commit 224421162c
+4 -2
View File
@@ -1,4 +1,4 @@
name: Refresh name: Refresh
on: on:
schedule: schedule:
- cron: '0 0 * * *' - cron: '0 0 * * *'
@@ -19,7 +19,7 @@ jobs:
run: | run: |
git config --global user.name 'GitHub Actions' git config --global user.name 'GitHub Actions'
git config --global user.email 'xaymar@users.noreply.github.com' git config --global user.email 'xaymar@users.noreply.github.com'
git config pull.ff only git config pull.ff only
git config pull.rebase true git config pull.rebase true
- name: "Remotes" - name: "Remotes"
shell: bash shell: bash
@@ -32,9 +32,11 @@ jobs:
run: | run: |
declare -a BRANCHES declare -a BRANCHES
BRANCHES[${#BRANCHES[@]}]="master" BRANCHES[${#BRANCHES[@]}]="master"
BRANCHES[${#BRANCHES[@]}]="release/4.4"
BRANCHES[${#BRANCHES[@]}]="release/4.3" BRANCHES[${#BRANCHES[@]}]="release/4.3"
BRANCHES[${#BRANCHES[@]}]="release/4.2" BRANCHES[${#BRANCHES[@]}]="release/4.2"
BRANCHES[${#BRANCHES[@]}]="release/4.1" BRANCHES[${#BRANCHES[@]}]="release/4.1"
BRANCHES[${#BRANCHES[@]}]="release/4.0"
BRANCHES[${#BRANCHES[@]}]="release/3.4" BRANCHES[${#BRANCHES[@]}]="release/3.4"
BRANCHES[${#BRANCHES[@]}]="release/3.3" BRANCHES[${#BRANCHES[@]}]="release/3.3"
BRANCHES[${#BRANCHES[@]}]="release/3.2" BRANCHES[${#BRANCHES[@]}]="release/3.2"