We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b362c04 commit 65e6894Copy full SHA for 65e6894
.github/workflows/iac.yml
@@ -151,6 +151,7 @@ jobs:
151
152
- name: Configure AWS Credentials
153
uses: aws-actions/configure-aws-credentials@v4.0.2
154
+ if: inputs.ENVIRONMENT == 'aws'
155
with:
156
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
157
aws-secret-access-key: ${{ secrets.AWS_ACCESS_KEY_SECRET }}
@@ -273,7 +274,7 @@ jobs:
273
274
issue-title: "Terragrunt approval pending for ${{ inputs.WORKING_DIR }}"
275
276
- name: Apply
- if: github.ref == 'refs/heads/main' && github.event_name == 'push'
277
+ if: github.ref == 'refs/heads/main' && github.event_name == 'push' || github.event_name == 'schedule'
278
uses: gruntwork-io/terragrunt-action@v2.1.4
279
id: apply
280
0 commit comments