Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jordangov committed Jul 15, 2024
1 parent 9be31f2 commit 88c73e8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/check-submission.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,17 @@ jobs:
- name: Check Submission
id: check_submission
run: >-
HASH_INPUT="${{ github.event.pull_request.user.login }}-${{ secrets.SALT1 }}-${{ secrets.SALT2 }}"
HASH_INPUT="${{ github.event.pull_request.user.login }}-${{ secrets.SALT1 }}-${{ secrets.SALT2 }}";
echo "Checking diff from ${{ github.event.pull_request.head.ref }} on ${{ github.event.pull_request.head.repo.full_name }}...";
SUBMISSION=`(diff target/plank-holders.md source/plank-holders.md || true) | awk '/\* @${{ github.event.pull_request.user.login }}/{ print $4 }'`;
CHECK=`echo -n "$HASH_INPUT" | openssl dgst -${{ secrets.ALGO }} | awk '/[a-z0-9]+/{ print $2 }'`;
RAW=`echo -n "$HASH_INPUT" | openssl dgst -${{ secrets.ALGO }}`
RAW=`echo -n "$HASH_INPUT" | openssl dgst -${{ secrets.ALGO }}`;
if [[ "$SUBMISSION" =~ ^[a-zA-Z0-9]+$ ]]; then
echo "Confirming submission ($SUBMISSION) for ${{ github.event.pull_request.user.login }} equals check...";
echo "Check: $CHECK";
echo "Raw: $RAW"
echo "Raw: $RAW";
if [[ "$SUBMISSION" = "$CHECK" ]]; then
echo "Submission match"
echo "RESULT=pass" >> "$GITHUB_OUTPUT";
Expand Down

0 comments on commit 88c73e8

Please sign in to comment.