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

Disable Terraform integration tests for forks #104

Merged
merged 1 commit into from
Oct 11, 2023
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ jobs:
aws_test:
name: aws_test
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.fork == false
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_KEY }}
Expand All @@ -140,6 +141,7 @@ jobs:
gcp_test:
name: gcp_test
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.fork == false

steps:
- name: Checkout
Expand Down Expand Up @@ -170,6 +172,8 @@ jobs:
azure_test:
name: azure-test
runs-on: ubuntu-latest
if: github.event.pull_request.head.repo.fork == false

env:
ARM_CLIENT_ID: ${{ secrets.ARM_CLIENT_ID }}
ARM_CLIENT_SECRET: ${{ secrets.ARM_CLIENT_SECRET }}
Expand Down
Loading