Update Reporter

This commit is contained in:
thororen1234 2025-05-13 13:06:17 -04:00
parent 7cd521cb0e
commit d460e926f1
No known key found for this signature in database

View file

@ -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 }}