Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Delete fromJSON() calls in test validation step
  • Loading branch information
mario-campos committed Mar 31, 2026
commit e2203c62cf635d17ee226cf2ad2aacc56b5c25fc
4 changes: 2 additions & 2 deletions .github/workflows/__start-proxy.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pr-checks/checks/start-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ steps:
- name: Fail if proxy_urls does not contain all registries
Comment thread
mario-campos marked this conversation as resolved.
if: |
join(fromJSON(steps.proxy.outputs.proxy_urls)[*].type, ',') != 'maven_repository,maven_repository'
|| !contains(fromJSON(steps.proxy.outputs.proxy_urls)[*].url, 'https://repo.maven.apache.org/maven2/')
|| !contains(fromJSON(steps.proxy.outputs.proxy_urls)[*].url, 'https://repo1.maven.org/maven2')
|| !contains(steps.proxy.outputs.proxy_urls, 'https://repo.maven.apache.org/maven2/')
|| !contains(steps.proxy.outputs.proxy_urls, 'https://repo1.maven.org/maven2')
run: exit 1
Comment thread
mbg marked this conversation as resolved.
Loading