From 928e95860fb0a966c57744ad2b7128720186856c Mon Sep 17 00:00:00 2001 From: bloombar_local_username Date: Thu, 1 Feb 2024 18:40:25 -0500 Subject: [PATCH] standardized usernames --- .github/workflows/event-logger.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/event-logger.yml b/.github/workflows/event-logger.yml index cce34ad..0fc53a0 100644 --- a/.github/workflows/event-logger.yml +++ b/.github/workflows/event-logger.yml @@ -10,16 +10,14 @@ jobs: runs-on: ubuntu-latest env: COMMIT_LOG_API: ${{ secrets.COMMIT_LOG_API }} + GITHUB_LOGIN: ${{ github.actor }} # github login also available in github.triggering_actor, github.event.sender.login COMMITS: ${{ toJSON(github.event.commits) }} REPOSITORY_URL: ${{ github.repositoryUrl }} EVENT_TYPE: ${{ github.event_name }} EVENT_ACTION: ${{ github.event.action }} - EVENT_USERNAME: ${{ github.actor }} - EVENT_EMAIL: "${{ github.event.pull_request.sender.email }}" PR_MERGED: ${{ github.event.pull_request.merged }} PR_CREATED_AT: ${{ github.event.pull_request.created_at}} PR_CLOSED_AT: ${{ github.event.pull_request.closed_at}} - PR_MERGE_USER: ${{ github.event.pull_request.merged_by.login}} steps: - uses: actions/checkout@v3 with: @@ -39,17 +37,17 @@ jobs: - name: Log pull request opened if: github.event_name == 'pull_request' && github.event.action == 'opened' run: | - pipenv run gitcommitlogger -r $(echo $REPOSITORY_URL) -t pull_request_opened -d $(echo $PR_CREATED_AT) -un $(echo $EVENT_USERNAME) -o commit_stats.csv -u $(echo $COMMIT_LOG_API) -v + pipenv run gitcommitlogger -r $(echo $REPOSITORY_URL) -t pull_request_opened -d $(echo $PR_CREATED_AT) -un $(echo $GITHUB_LOGIN) -o commit_stats.csv -u $(echo $COMMIT_LOG_API) -v - name: Log pull request closed and merged if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true run: | echo $COMMITS > commits.json cat commits.json # debugging - pipenv run gitcommitlogger -r $(echo $REPOSITORY_URL) -t pull_request_merged -d $(echo $PR_CLOSED_AT) -un $(echo $PR_MERGE_USER) -i commits.json -o commit_stats.csv -u $(echo $COMMIT_LOG_API) -v + pipenv run gitcommitlogger -r $(echo $REPOSITORY_URL) -t pull_request_merged -d $(echo $PR_CLOSED_AT) -un $(echo $GITHUB_LOGIN) -i commits.json -o commit_stats.csv -u $(echo $COMMIT_LOG_API) -v - name: Log pull request closed without merge if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == false run: | - pipenv run gitcommitlogger -r $(echo $REPOSITORY_URL) -t pull_request_closed -d $(echo $PR_CLOSED_AT) -un $(echo $EVENT_USERNAME) -o commit_stats.csv -u $(echo $COMMIT_LOG_API) -v + pipenv run gitcommitlogger -r $(echo $REPOSITORY_URL) -t pull_request_closed -d $(echo $PR_CLOSED_AT) -un $(echo $GITHUB_LOGIN) -o commit_stats.csv -u $(echo $COMMIT_LOG_API) -v - name: Log push if: github.event_name == 'push' run: |