-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
022dbfd
commit 8985e71
Showing
1 changed file
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,16 @@ jobs: | |
static-checks: | ||
name: Check the status of static checks | ||
runs-on: ubuntu-latest | ||
if: github.actor == 'dependabot[bot]' | ||
strategy: | ||
matrix: | ||
tf-checks: ["tf-lint / tflint", "tfsec / tfsec sarif report", "tf-checks-website-s3-example / Check code format"] | ||
if: github.actor == 'dependabot[bot]' | ||
steps: | ||
- name: Wait for "tflint" to succeed | ||
- name: Wait for "${{ matrix.tf-checks }}" to succeed | ||
uses: lewagon/[email protected] | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
check-name: 'tf-lint / tflint' | ||
check-name: ${{ matrix.tf-checks }} | ||
repo-token: ${{ secrets.GITHUB }} | ||
wait-interval: 30 | ||
|
||
|