From 2fe9be0a957f06314940bf523d1c83ea9f438349 Mon Sep 17 00:00:00 2001 From: Candace Savonen Date: Thu, 2 Feb 2023 08:23:26 -0500 Subject: [PATCH 1/3] Add the time of the report --- .github/workflows/report-maker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/report-maker.yml b/.github/workflows/report-maker.yml index 59fd900..8bfa1c8 100644 --- a/.github/workflows/report-maker.yml +++ b/.github/workflows/report-maker.yml @@ -79,7 +79,7 @@ jobs: id: file-path run: | branch_name='preview-${{ github.event.pull_request.number }}' - echo "time=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + echo "time=$(date +'%Y-%m-%d-%T')" >> $GITHUB_OUTPUT echo "error_url=https://github.com/${GITHUB_REPOSITORY}/blob/$branch_name/${{ steps.check_results.outputs.report_path }}" >> $GITHUB_OUTPUT shell: bash From fdbd7037cc4e00c950b22c930460a014c21ea484 Mon Sep 17 00:00:00 2001 From: Candace Savonen Date: Thu, 2 Feb 2023 08:25:04 -0500 Subject: [PATCH 2/3] One other spot --- .github/workflows/report-maker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/report-maker.yml b/.github/workflows/report-maker.yml index 8bfa1c8..10b6066 100644 --- a/.github/workflows/report-maker.yml +++ b/.github/workflows/report-maker.yml @@ -39,7 +39,7 @@ jobs: id: build-components run: | branch_name='preview-${{ github.event.pull_request.number }}' - echo "time=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + echo "time=$(date +'%Y-%m-%d-%T')" >> $GITHUB_OUTPUT echo "commit_id=$GITHUB_SHA" >> $GITHUB_OUTPUT shell: bash From cc3f1d54c21cbfd98b5ac61ac7979bee493f7953 Mon Sep 17 00:00:00 2001 From: cansavvy Date: Tue, 12 Mar 2024 09:46:40 -0400 Subject: [PATCH 3/3] Change login --- .github/workflows/report-maker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/report-maker.yml b/.github/workflows/report-maker.yml index c375d2e..1453462 100644 --- a/.github/workflows/report-maker.yml +++ b/.github/workflows/report-maker.yml @@ -119,9 +119,9 @@ jobs: run: | branch_name='preview-${{ github.event.pull_request.number }}' - git config --system --add safe.directory "$GITHUB_WORKSPACE" - git config --local user.email "itcrtrainingnetwork@gmail.com" - git config --local user.name "jhudsl-robot" + git config --global --add safe.directory $GITHUB_WORKSPACE + git config --global user.name 'github-actions[bot]' + git config --global user.email 'github-actions[bot]@users.noreply.github.com' git add ${{ steps.check_results.outputs.report_path }} --force || echo "No changes to commit" git commit -m 'Add check file' || echo "No changes to commit"