From 43c22c98d83b0a92e83c681f9f5471a4b8a13452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juanjo=20Baz=C3=A1n?= Date: Wed, 28 Feb 2024 14:36:22 +0100 Subject: [PATCH] Update paper-checks.yml --- .github/workflows/paper-checks.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/paper-checks.yml b/.github/workflows/paper-checks.yml index c5e6feb..59a8a50 100644 --- a/.github/workflows/paper-checks.yml +++ b/.github/workflows/paper-checks.yml @@ -37,15 +37,10 @@ jobs: - name: Post results run: | echo -e "\`\`\`\nSoftware report:\n\n$(cat cloc-results.txt)\n\`\`\`" > cloc-results.txt -# gh issue comment ${{ github.event.inputs.issue_id }} --body-file cloc-results.txt + gh issue comment ${{ github.event.inputs.issue_id }} --body-file cloc-results.txt - name: List Git Authors run: | - git --version - ls -la - git shortlog -sn --no-merges --branches . - git branch - git log --pretty=short | git shortlog -sn - (git shortlog -sn --no-merges) > git-authors.txt + (git shortlog -sn --no-merges --branches .) > git-authors.txt echo -e "\`\`\`\nThe following historical commit information, by author, was found:\n\n$(cat git-authors.txt)\n\`\`\`" > git-authors.txt cat git-authors.txt -# gh issue comment ${{ github.event.inputs.issue_id }} --body-file git-authors.txt + gh issue comment ${{ github.event.inputs.issue_id }} --body-file git-authors.txt