We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eff90c5 commit df1c338Copy full SHA for df1c338
.github/workflows/testacc.yml
@@ -74,6 +74,9 @@ jobs:
74
- run: go mod download
75
- env:
76
TF_ACC: "1"
77
+ ASTRO_API_TOKEN: ${{ secrets.DEV_ASTRO_API_TOKEN }}
78
+ ASTRO_API_HOST: ${{ secrets.DEV_ASTRO_API_HOST }}
79
+ ASTRO_ORGANIZATION_ID: ${{ secrets.DEV_ASTRO_ORGANIZATION_ID }}
80
run: make testacc
81
timeout-minutes: 10
82
- name: Set latest commit status as ${{ job.status }}
@@ -86,7 +89,7 @@ jobs:
86
89
87
90
main-testacc:
88
91
# This job runs on push to main branch.
- if: github.event_name == 'push'
92
+ if: github.event_name == 'push' && github.ref == 'refs/heads/main'
93
name: Main Terraform Provider Acceptance Tests
94
needs: build
95
environment: dev
0 commit comments