Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new parameter to verdepcheck action #271

Merged
merged 7 commits into from
Jan 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/verdepcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 != ''
Expand Down
Loading