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

Avoid cloud-provider CI/CD test via repo-scoped variable [do not merge] #2365

Closed
Closed
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
6 changes: 4 additions & 2 deletions .github/workflows/test-provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ on:

jobs:
test-render-providers:
# avoid running on PRs coming from a fork
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
# Mechanism to prevent this test from running
# - on forks whose maintainers specify that provider credentials are absent (by setting env NO_PROVIDER_CREDENTIALS)
# - on PRs coming from a fork (in which case the destination fork's provider credentials do not currently work)
if: ${{ env.NO_PROVIDER_CREDENTIALS == '' }} && (github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request')
name: "Test Nebari Provider"
runs-on: ubuntu-latest
permissions:
Expand Down