From 1611bb366fca9713ab4b270520d1afa264bcb0ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ver=C3=ADssimo?= <211358+averissimo@users.noreply.github.com> Date: Wed, 8 Jan 2025 16:46:16 +0100 Subject: [PATCH] Add new parameter to verdepcheck action (#271) # Pull Request Companion to https://github.com/insightsengineering/r-verdepcheck-action/pull/22 --- .github/workflows/verdepcheck.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/verdepcheck.yaml b/.github/workflows/verdepcheck.yaml index ee203f49..68b81aad 100644 --- a/.github/workflows/verdepcheck.yaml +++ b/.github/workflows/verdepcheck.yaml @@ -46,6 +46,13 @@ on: required: false default: "" type: string + additional-repos: + description: | + Optional value that add R repositories for a given strategy. Multiple entries are possible separated by `";"`. + additional-repos: https://repo1.example.com;https://repo2.example.com + required: false + default: "" + type: string jobs: dependency-test: @@ -117,6 +124,7 @@ jobs: check-args: ${{ inputs.check-args }} strategy: ${{ env.strategy }} additional-env-vars: ${{ inputs.additional-env-vars }} + additional-repos: ${{ inputs.additional-repos }} - name: GChat notification 🔔 if: (failure() || cancelled()) && steps.verdepcheck.outcome != 'success' && env.gchat_webhook != ''