From d460e926f1cb06e5c6e92511471c621ea64936f5 Mon Sep 17 00:00:00 2001 From: thororen1234 <78185467+thororen1234@users.noreply.github.com> Date: Tue, 13 May 2025 13:06:17 -0400 Subject: [PATCH] Update Reporter --- .github/workflows/reportBrokenPlugins.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reportBrokenPlugins.yml b/.github/workflows/reportBrokenPlugins.yml index 85156be3..e4d0529a 100644 --- a/.github/workflows/reportBrokenPlugins.yml +++ b/.github/workflows/reportBrokenPlugins.yml @@ -10,6 +10,10 @@ on: - stable - canary default: both + webhook_url: + type: string + description: "Webhook URL that the report will be posted to. This will be visible for everyone, so DO NOT pass sensitive webhooks like discord webhook. This is meant to be used by Venbot." + required: false schedule: # # Every day at midnight - cron: 0 0 * * * @@ -87,5 +91,5 @@ jobs: cat "$stable_output_file" "$canary_output_file" >> $GITHUB_STEP_SUMMARY exit $exit_code env: - WEBHOOK_URL: ${{ secrets.WEBHOOK }} + WEBHOOK_URL: ${{ inputs.webhook_url || secrets.WEBHOOK }} WEBHOOK_SECRET: ${{ secrets.WEBHOOK_SECRET }}