From 7978b863c9e7a0f7877bb6921811951801b3bf25 Mon Sep 17 00:00:00 2001 From: okxlin Date: Thu, 9 Nov 2023 18:55:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E4=B8=8A=E6=B8=B8bot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/renovate-app-version.yml | 7 ++----- .github/workflows/renovate.yml | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/renovate-app-version.yml b/.github/workflows/renovate-app-version.yml index 40400d86..0011355d 100644 --- a/.github/workflows/renovate-app-version.yml +++ b/.github/workflows/renovate-app-version.yml @@ -1,8 +1,6 @@ name: Update app version in Renovate Branches on: - schedule: - - cron: "0 0 * * *" push: branches: [ 'renovate/*' ] workflow_dispatch: @@ -10,7 +8,6 @@ on: manual-trigger: description: 'Manually trigger Renovate' default: '' - jobs: update-app-version: runs-on: ubuntu-latest @@ -50,6 +47,6 @@ jobs: for file in "${files[@]}"; do if [[ $file == *"docker-compose.yml"* ]]; then app_name=$(echo $file | cut -d'/' -f 2) - git add "apps/$app_name/*" && git commit -m "Update app version" --no-verify && git push || true + git add "apps/$app_name/*" && git commit -m "Update app version [skip ci]" --no-verify && git push || true fi - done + done \ No newline at end of file diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml index d52372a5..23470adc 100644 --- a/.github/workflows/renovate.yml +++ b/.github/workflows/renovate.yml @@ -2,7 +2,7 @@ name: Renovate on: schedule: - - cron: "0 */6 * * *" + - cron: "0 0 * * *" push: branches: - localApps