From 224421162cc766fbc25decc2fef3f648a241f3c1 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Wed, 19 May 2021 04:19:36 +0200 Subject: [PATCH] ci: Track versions 4.0 and 4.4 --- .github/workflows/refresh.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/refresh.yml b/.github/workflows/refresh.yml index ac5c49527e..a61877ea81 100644 --- a/.github/workflows/refresh.yml +++ b/.github/workflows/refresh.yml @@ -1,4 +1,4 @@ -name: Refresh +name: Refresh on: schedule: - cron: '0 0 * * *' @@ -19,7 +19,7 @@ jobs: run: | git config --global user.name 'GitHub Actions' 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 - name: "Remotes" shell: bash @@ -32,9 +32,11 @@ jobs: run: | declare -a BRANCHES BRANCHES[${#BRANCHES[@]}]="master" + BRANCHES[${#BRANCHES[@]}]="release/4.4" BRANCHES[${#BRANCHES[@]}]="release/4.3" BRANCHES[${#BRANCHES[@]}]="release/4.2" BRANCHES[${#BRANCHES[@]}]="release/4.1" + BRANCHES[${#BRANCHES[@]}]="release/4.0" BRANCHES[${#BRANCHES[@]}]="release/3.4" BRANCHES[${#BRANCHES[@]}]="release/3.3" BRANCHES[${#BRANCHES[@]}]="release/3.2"