This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: org rename imports patch * fix: removed deprecated goreleaser settings * fix: deprecated golangci-lint configuration * fix: update github actions versions --------- Co-authored-by: brittonhayes <[email protected]>
- Loading branch information
1 parent
c304e8c
commit a2d0daf
Showing
60 changed files
with
462 additions
and
325 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 |
---|---|---|
@@ -1 +1 @@ | ||
* @SlalomBuild/fusion-contributors | ||
* @slalombuild/fusion-contributors |
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
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
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 |
---|---|---|
@@ -1,37 +1,40 @@ | ||
linters: | ||
enable: | ||
- gofmt | ||
- goimports | ||
- errcheck | ||
- nestif | ||
- wrapcheck | ||
- depguard | ||
- gosimple | ||
- goconst | ||
- gomodguard | ||
- gofmt | ||
- goimports | ||
- errcheck | ||
- nestif | ||
- wrapcheck | ||
- depguard | ||
- gosimple | ||
- goconst | ||
- gomodguard | ||
issues: | ||
fix: true | ||
exclude-rules: | ||
- path: '(.+)_test\.go' | ||
linters: | ||
- depguard | ||
- path: '(.+)_test\.go' | ||
linters: | ||
- depguard | ||
|
||
linters-settings: | ||
gosimple: | ||
go: "1.17" | ||
checks: ["all"] | ||
wrapcheck: | ||
ignorePackageGlobs: | ||
- github.com/SlalomBuild/fusion/* | ||
- github.com/slalombuild/fusion/* | ||
depguard: | ||
include-go-root: true | ||
packages-with-error-message: | ||
- log: 'logging is allowed only by github.com/rs/zerolog/log' | ||
- github.com/tj/assert: 'assert is allowed only by github.com/stretchr/testify/assert' | ||
rules: | ||
main: | ||
deny: | ||
- pkg: 'log' | ||
desc: 'logging is allowed only by github.com/rs/zerolog/log' | ||
- pkg: github.com/tj/assert | ||
desc: 'assert is allowed only by github.com/stretchr/testify/assert' | ||
gomodguard: | ||
blocked: | ||
modules: | ||
- github.com/tj/assert: | ||
recommendations: | ||
- github.com/stretchr/testify/assert | ||
reason: "testify assert is the preferred testing library for this project" | ||
- github.com/tj/assert: | ||
recommendations: | ||
- github.com/stretchr/testify/assert | ||
reason: "testify assert is the preferred testing library for this project" |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
output: "{{.Dir}}/README.md" | ||
repository: | ||
url: https://github.com/SlalomBuild/fusion | ||
url: https://github.com/slalombuild/fusion | ||
defaultBranch: main | ||
path: / |
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 |
---|---|---|
@@ -1,43 +1,50 @@ | ||
before: | ||
hooks: | ||
- go mod tidy | ||
- go mod tidy | ||
builds: | ||
- id: "fusion" | ||
main: "./cmd/fusion" | ||
binary: "fusion" | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
- id: "fusionctl" | ||
main: "./cmd/fusionctl" | ||
binary: "fusionctl" | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
- id: "fusion" | ||
main: "./cmd/fusion" | ||
binary: "fusion" | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm | ||
- arm64 | ||
- id: "fusionctl" | ||
main: "./cmd/fusionctl" | ||
binary: "fusionctl" | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
brews: | ||
- name: fusion | ||
homepage: "https://github.com/SlalomBuild/fusion" | ||
description: "Generate secure by default cloud infrastructure configuration with Go and Terraform" | ||
license: "MIT" | ||
goarm: "6" | ||
tap: | ||
owner: SlalomBuild | ||
name: fusion | ||
url_template: "https://github.com/SlalomBuild/fusion/releases/download/{{ .Tag }}/{{ .ArtifactName }}" | ||
commit_author: | ||
name: goreleaserbot | ||
email: [email protected] | ||
- name: fusion | ||
homepage: "https://github.com/slalombuild/fusion" | ||
description: "Generate secure by default cloud infrastructure configuration with Go and Terraform" | ||
license: "MIT" | ||
goarm: "6" | ||
repository: | ||
owner: slalombuild | ||
name: fusion | ||
url_template: "https://github.com/slalombuild/fusion/releases/download/{{ .Tag }}/{{ .ArtifactName }}" | ||
commit_author: | ||
name: goreleaserbot | ||
email: [email protected] | ||
|
||
scoop: | ||
url_template: "https://github.com/SlalomBuild/fusion/releases/download/{{ .Tag }}/{{ .ArtifactName }}" | ||
bucket: | ||
owner: SlalomBuild | ||
name: fusion | ||
commit_author: | ||
name: goreleaserbot | ||
email: [email protected] | ||
scoops: | ||
- url_template: "https://github.com/slalombuild/fusion/releases/download/{{ .Tag }}/{{ .ArtifactName }}" | ||
repository: | ||
owner: slalombuild | ||
name: fusion | ||
commit_author: | ||
name: goreleaserbot | ||
email: [email protected] | ||
|
||
checksum: | ||
name_template: "checksums.txt" | ||
|
@@ -46,18 +53,18 @@ snapshot: | |
changelog: | ||
sort: asc | ||
groups: | ||
- title: Features | ||
regexp: "^.*feat[(\\w)]*:+.*$" | ||
order: 0 | ||
- title: 'Bug fixes' | ||
regexp: "^.*fix[(\\w)]*:+.*$" | ||
order: 1 | ||
- title: Others | ||
order: 999 | ||
- title: Features | ||
regexp: "^.*feat[(\\w)]*:+.*$" | ||
order: 0 | ||
- title: 'Bug fixes' | ||
regexp: "^.*fix[(\\w)]*:+.*$" | ||
order: 1 | ||
- title: Others | ||
order: 999 | ||
|
||
filters: | ||
exclude: | ||
- "^docs:" | ||
- "^test:" | ||
- "^images:" | ||
- "^_examples:" | ||
- "^docs:" | ||
- "^test:" | ||
- "^images:" | ||
- "^_examples:" |
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
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
Oops, something went wrong.