8000 ci: skip running test-e2e on PRs from forks by matifali · Pull Request #15784 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content
8000

ci: skip running test-e2e on PRs from forks #15784

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

Merged
merged 4 commits into from
Dec 9, 2024
Merged
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
Next Next commit
Update .github/workflows/ci.yaml
Co-authored-by: Dean Sheather <dean@deansheather.com>
  • Loading branch information
matifali and deansheather authored Dec 9, 2024
commit 718da72462f420e21d72f209b4f19827e5f134f0
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ jobs:
- premium: true
name: test-e2e-premium
# Skip test-e2e on forks as they don't have access to CI secrets
if: (needs.changes.outputs.go == 'true' || needs.changes.outputs.ts == 'true' || needs.changes.outputs.ci == 'true') && !(github.event.pull_request.head.repo.fork && matrix.variant.premium) || github.ref == 'refs/heads/main'
if: (needs.changes.outputs.go == 'true' || needs.changes.outputs.ts == 'true' || needs.changes.outputs.ci == 'true' || github.ref == 'refs/heads/main') && !(github.event.pull_request.head.repo.fork && matrix.variant.premium)
timeout-minutes: 20
name: ${{ matrix.variant.name }}
steps:
Expand Down
Loading
0