From 42403b898f9f2ad8c8365b55eaf50d58a2786429 Mon Sep 17 00:00:00 2001 From: rishadbaniya Date: Sun, 6 Oct 2024 13:57:06 +0545 Subject: [PATCH] ci: add support for file name in commit message --- .github/workflows/CompileTimeDelta.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CompileTimeDelta.yml b/.github/workflows/CompileTimeDelta.yml index 02399f1e..3428d7d7 100644 --- a/.github/workflows/CompileTimeDelta.yml +++ b/.github/workflows/CompileTimeDelta.yml @@ -45,5 +45,6 @@ jobs: git config user.name "compile-timings[bot]" git config user.email debatemap@gmail.com git add timings - git commit -m "ci: add build timing information for app-server" + NEW_BUILD_HTML_FILE=$(ls -t timings/raw_html/ | head -n1) + git commit -m "ci: add build timing html file $NEW_BUILD_HTML_FILE and it's extracted json files" git push