From 952968567b7afb28d0fb75c1d2820f6f0bf4e83d Mon Sep 17 00:00:00 2001 From: youben11 Date: Fri, 8 Oct 2021 14:44:27 +0100 Subject: [PATCH] ci: update msg of LLVM auto-update commit --- .github/workflows/llvm-compatibility.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/llvm-compatibility.yml b/.github/workflows/llvm-compatibility.yml index 6249abe7d..3dad4db48 100644 --- a/.github/workflows/llvm-compatibility.yml +++ b/.github/workflows/llvm-compatibility.yml @@ -16,7 +16,10 @@ jobs: submodules: recursive - name: Update LLVM - run: git submodule update --remote + id: update-llvm + run: | + git submodule update --remote + echo "::set-output name=commit::$(cd llvm-project && git rev-parse --short HEAD)" - name: Log LLVM commit run: echo "LLVM commit" && cd ${{ github.workspace }}/llvm-project && git log -1 @@ -41,6 +44,7 @@ jobs: with: add: ./llvm-project default_author: github_actions + message: "chore: update LLVM to ${{ steps.update-llvm.outputs.commit }}" - name: Send Slack Notification if: ${{ always() }}