diff --git a/.github/workflows/submit-verification-request.yml b/.github/workflows/submit-verification-request.yml index 657789f..0e5d302 100644 --- a/.github/workflows/submit-verification-request.yml +++ b/.github/workflows/submit-verification-request.yml @@ -17,7 +17,7 @@ jobs: with: script: | const body = context.payload.comment.body - console.log(body) + return body - uses: actions/checkout@v3 - name: Install Packages run: yarn --cwd ./scripts install --frozen-lockfile diff --git a/scripts/verify/index.js b/scripts/verify/index.js index f8c0fdc..57b1da2 100644 --- a/scripts/verify/index.js +++ b/scripts/verify/index.js @@ -14,6 +14,7 @@ function createDiscordVerificationPost(id, data) { export async function sendDiscordWebhook(value) { const values = value.split(" "); if (values.length !== 2) { + console.log(values); throw Error("invalid submission"); }