From 50236f4f18ea85a5ed059b0915db47b3b8fe984a Mon Sep 17 00:00:00 2001 From: youben11 Date: Fri, 8 Oct 2021 11:41:05 +0100 Subject: [PATCH] ci: auto-update llvm 1/week if no breaking changes --- .github/workflows/llvm-compatibility.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/llvm-compatibility.yml b/.github/workflows/llvm-compatibility.yml index e8b16a4ad..6249abe7d 100644 --- a/.github/workflows/llvm-compatibility.yml +++ b/.github/workflows/llvm-compatibility.yml @@ -3,7 +3,7 @@ name: LLVM Compatibility on: workflow_dispatch: schedule: - - cron: '0 00 * * 1-5' # Everyday @ 00:00 from Monday to Friday + - cron: '0 00 * * 1' # Every Monday @ 00:00 UTC jobs: build_test: @@ -36,6 +36,12 @@ jobs: pip install pytest make BUILD_DIR=/build test + - name: Commit latest LLVM version + uses: EndBug/add-and-commit@v7 + with: + add: ./llvm-project + default_author: github_actions + - name: Send Slack Notification if: ${{ always() }} continue-on-error: true