From 13b4390e9755891422c9e1d492c00c10acaff50b Mon Sep 17 00:00:00 2001 From: Lucas Petrino Date: Wed, 4 Jun 2025 15:08:25 +1200 Subject: [PATCH] prbot inputs --- action.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 314d34f..c8e3616 100644 --- a/action.yml +++ b/action.yml @@ -9,9 +9,19 @@ inputs: description: 'Additional cppcheck flags' required: false default: '--enable=warning' + prbot_username: + description: 'PRBot Username' + required: true + prbot_api_token: + description: 'PRBot API Token' + required: true + runs: using: 'docker' image: 'Dockerfile' args: - ${{ inputs.path }} - - ${{ inputs.opts }} \ No newline at end of file + - ${{ inputs.opts }} + env: + PRBOT_USERNAME: ${{ inputs.prbot_username }} + PRBOT_API_TOKEN: ${{ inputs.prbot_api_token }} \ No newline at end of file