From d4ff07f5d57c12dfb925a052a4f942f38b6f4b62 Mon Sep 17 00:00:00 2001 From: kjsato Date: Thu, 13 Jun 2024 11:16:12 -0400 Subject: [PATCH] added two elements when creating a commit message in after-validate-submission.html --- .github/workflows/after-validate-submission.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/after-validate-submission.yaml b/.github/workflows/after-validate-submission.yaml index a01f6e3f..2154582d 100644 --- a/.github/workflows/after-validate-submission.yaml +++ b/.github/workflows/after-validate-submission.yaml @@ -100,7 +100,7 @@ jobs: git config user.email "41898282+github-actions[bot]@users.noreply.github.com" if [ -n "$(git status --porcelain)" ]; then git add model-output/hub-ensemble/* - git commit -m "Upload new files to root repo" + git commit -m "Upload new files to RSV data repo by ${GITHUB_ACTOR} in #${{ github.event.pull_request.number }}" git push echo "Data for hub-ensemble uploaded to root repo"; else @@ -134,7 +134,7 @@ jobs: git pull origin main if [ -n "$(git status --porcelain)" ]; then git add . - git commit -m "Upload new files to RSV data repo" + git commit -m "Upload new files to RSV data repo by ${GITHUB_ACTOR} in #${{ github.event.pull_request.number }}" git push echo "RSV data uploaded"; else