-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from somtochiama/check-ci
Add CI workflow to run checks on tf files
- Loading branch information
Showing
5 changed files
with
80 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
version: 2 | ||
|
||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
labels: ["area/ci", "dependencies"] | ||
groups: | ||
# Group all updates together, so that they are all applied in a single PR. | ||
# Grouped updates are currently in beta and is subject to change. | ||
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups | ||
ci: | ||
patterns: | ||
- "*" | ||
schedule: | ||
# By default, this will be on a monday. | ||
interval: "weekly" |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Configuration file to declaratively configure labels | ||
# Ref: https://github.com/EndBug/label-sync#Config-files | ||
|
||
- name: area/terraform | ||
description: Terraform related issues and pull requests | ||
color: '#00b140' | ||
- name: area/tftestenv | ||
description: Tftestenv package related issues and pull requests | ||
color: '#863faf' |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: check | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
terraform-fmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | ||
- name: Setup Terraform | ||
uses: hashicorp/setup-terraform@633666f66e0061ca3b725c73b2ec20cd13a8fdd1 # v2 | ||
with: | ||
terraform_version: latest | ||
terraform_wrapper: false | ||
- name: Check tf files | ||
run: | | ||
# run check formatting of files in tf-modules directory | ||
make tf-fmt TF_ARGS="-check -diff" |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: sync-labels | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- .github/labels.yaml | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
labels: | ||
name: Run sync | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | ||
- uses: EndBug/label-sync@da00f2c11fdb78e4fae44adac2fdd713778ea3e8 # v2.3.2 | ||
with: | ||
# Configuration file | ||
config-file: | | ||
https://raw.githubusercontent.com/fluxcd/community/main/.github/standard-labels.yaml | ||
.github/labels.yaml | ||
# Strictly declarative | ||
delete-other-labels: true |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
TF_ARGS= | ||
|
||
tf-fmt: | ||
terraform fmt -recursive $(TF_ARGS) tf-modules |