Skip to content

Commit dedbbb4

Browse files
chore: add goreleaser fork
1 parent 7388419 commit dedbbb4

File tree

545 files changed

+61759
-59
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

545 files changed

+61759
-59
lines changed

go.mod

Lines changed: 37 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,51 @@ module github.com/go-semantic-release/hooks-goreleaser
22

33
go 1.17
44

5-
require github.com/go-semantic-release/semantic-release/v2 v2.19.0
5+
require (
6+
github.com/go-semantic-release/semantic-release/v2 v2.19.0
7+
github.com/goreleaser/goreleaser v1.4.1
8+
)
9+
10+
replace github.com/goreleaser/goreleaser v1.4.1 => ./goreleaser
611

712
require (
8-
github.com/Masterminds/semver/v3 v3.1.0 // indirect
9-
github.com/fatih/color v1.7.0 // indirect
10-
github.com/fsnotify/fsnotify v1.4.7 // indirect
11-
github.com/golang/protobuf v1.4.3 // indirect
12-
github.com/hashicorp/go-hclog v0.15.0 // indirect
13+
github.com/Masterminds/semver/v3 v3.1.1 // indirect
14+
github.com/alecthomas/jsonschema v0.0.0-20211209230136-e2b41affa5c1 // indirect
15+
github.com/apex/log v1.9.0 // indirect
16+
github.com/fatih/color v1.13.0 // indirect
17+
github.com/fsnotify/fsnotify v1.5.1 // indirect
18+
github.com/gobwas/glob v0.2.3 // indirect
19+
github.com/golang/protobuf v1.5.2 // indirect
20+
github.com/goreleaser/fileglob v1.2.0 // indirect
21+
github.com/goreleaser/nfpm/v2 v2.11.3 // indirect
22+
github.com/hashicorp/go-hclog v1.0.0 // indirect
1323
github.com/hashicorp/go-plugin v1.4.0 // indirect
1424
github.com/hashicorp/hcl v1.0.0 // indirect
1525
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
26+
github.com/iancoleman/orderedmap v0.2.0 // indirect
1627
github.com/inconshreveable/mousetrap v1.0.0 // indirect
17-
github.com/magiconair/properties v1.8.1 // indirect
18-
github.com/mattn/go-colorable v0.1.4 // indirect
19-
github.com/mattn/go-isatty v0.0.12 // indirect
28+
github.com/magiconair/properties v1.8.5 // indirect
29+
github.com/mattn/go-colorable v0.1.12 // indirect
30+
github.com/mattn/go-isatty v0.0.14 // indirect
2031
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
21-
github.com/mitchellh/mapstructure v1.1.2 // indirect
32+
github.com/mitchellh/mapstructure v1.4.3 // indirect
2233
github.com/oklog/run v1.0.0 // indirect
23-
github.com/pelletier/go-toml v1.2.0 // indirect
24-
github.com/spf13/afero v1.1.2 // indirect
25-
github.com/spf13/cast v1.3.0 // indirect
26-
github.com/spf13/cobra v1.1.1 // indirect
27-
github.com/spf13/jwalterweatherman v1.0.0 // indirect
34+
github.com/pelletier/go-toml v1.9.4 // indirect
35+
github.com/pkg/errors v0.9.1 // indirect
36+
github.com/spf13/afero v1.6.0 // indirect
37+
github.com/spf13/cast v1.4.1 // indirect
38+
github.com/spf13/cobra v1.3.0 // indirect
39+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
2840
github.com/spf13/pflag v1.0.5 // indirect
29-
github.com/spf13/viper v1.7.1 // indirect
41+
github.com/spf13/viper v1.10.0 // indirect
3042
github.com/subosito/gotenv v1.2.0 // indirect
31-
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
32-
golang.org/x/sys v0.0.0-20201113135734-0a15ea8d9b02 // indirect
33-
golang.org/x/text v0.3.2 // indirect
34-
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
35-
google.golang.org/grpc v1.33.2 // indirect
36-
google.golang.org/protobuf v1.25.0 // indirect
37-
gopkg.in/ini.v1 v1.51.0 // indirect
38-
gopkg.in/yaml.v2 v2.2.8 // indirect
43+
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect
44+
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
45+
golang.org/x/text v0.3.7 // indirect
46+
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
47+
google.golang.org/grpc v1.43.0 // indirect
48+
google.golang.org/protobuf v1.27.1 // indirect
49+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
50+
gopkg.in/ini.v1 v1.66.2 // indirect
51+
gopkg.in/yaml.v2 v2.4.0 // indirect
3952
)

go.sum

Lines changed: 903 additions & 35 deletions
Large diffs are not rendered by default.

goreleaser/.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
indent_size = 4
6+
indent_style = tab
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
charset = utf-8
11+
12+
[*.{md,yml,yaml}]
13+
indent_size = 2
14+
indent_style = space

goreleaser/.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
* text eol=lf
2+
3+
# Denote all files that are truly binary and should not be modified.
4+
*.png binary
5+
*.jpg binary
6+
*.ico binary
7+
8+
www/docs/static/schema.json linguist-generated=true
9+
www/docs/static/schema-pro.json linguist-generated=true

goreleaser/.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @goreleaser/everyone
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: Bug Report
2+
description: File a bug report
3+
labels: [bug, triage]
4+
assignees:
5+
- caarlos0
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report! Please fill the form below.
11+
- type: textarea
12+
id: what-happened
13+
attributes:
14+
label: What happened?
15+
description: Also tell us, what did you expect to happen?
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: reproducible
20+
attributes:
21+
label: How can we reproduce this?
22+
description: Please share a public repository that reproduces the issue, or an example config file. Links to failing goreleaser runs and etc are also helpful.
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: goreleaser-version
27+
attributes:
28+
label: goreleaser version
29+
description: '`goreleaser --version` output'
30+
render: bash
31+
validations:
32+
required: true
33+
- type: checkboxes
34+
id: goreleaser-check
35+
attributes:
36+
label: GoReleaser Check
37+
description: 'If I run `goreleaser check` it shows no errors'
38+
options:
39+
- label: goreleaser check shows no errors
40+
required: true
41+
- type: checkboxes
42+
id: search
43+
attributes:
44+
label: Search
45+
options:
46+
- label: I did search for other open and closed issues before opening this.
47+
required: true
48+
- type: checkboxes
49+
id: terms
50+
attributes:
51+
label: Code of Conduct
52+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/goreleaser/goreleaser/blob/main/CODE_OF_CONDUCT.md)
53+
options:
54+
- label: I agree to follow this project's Code of Conduct
55+
required: true
56+
- type: textarea
57+
id: ctx
58+
attributes:
59+
label: Additional context
60+
description: Anything else you would like to add
61+
validations:
62+
required: false
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Ask a question
4+
url: https://github.com/goreleaser/goreleaser/discussions
5+
about: Ask questions and discuss with other community members
6+
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Feature Request
2+
description: Request a new feature and/or enhancement to an existing feature
3+
labels: [enhancement, triage]
4+
assignees:
5+
- caarlos0
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this feature request! Please fill the form below.
11+
- type: textarea
12+
id: is-it-a-problem
13+
attributes:
14+
label: Is your feature request related to a problem? Please describe.
15+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: solution
20+
attributes:
21+
label: Describe the solution you'd like
22+
description: A clear and concise description of what you want to happen.
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: Describe alternatives you've considered
29+
description: A clear and concise description of any alternative solutions or features you've considered.
30+
validations:
31+
required: true
32+
- type: checkboxes
33+
id: search
34+
attributes:
35+
label: Search
36+
options:
37+
- label: I did search for other open and closed issues before opening this.
38+
required: true
39+
- type: checkboxes
40+
id: terms
41+
attributes:
42+
label: Code of Conduct
43+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/goreleaser/goreleaser/blob/main/CODE_OF_CONDUCT.md)
44+
options:
45+
- label: I agree to follow this project's Code of Conduct
46+
required: true
47+
- type: textarea
48+
id: ctx
49+
attributes:
50+
label: Additional context
51+
description: Anything else you would like to add
52+
validations:
53+
required: false
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!--
2+
3+
Hi, thanks for contributing!
4+
5+
Please make sure you read our CONTRIBUTING guide.
6+
7+
Also, add tests and the respective documentation changes as well.
8+
9+
-->
10+
11+
12+
<!-- If applied, this commit will... -->
13+
14+
...
15+
16+
<!-- Why is this change being made? -->
17+
18+
...
19+
20+
<!-- # Provide links to any relevant tickets, URLs or other resources -->
21+
22+
...

goreleaser/.github/dependabot.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "gomod"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
time: "08:00"
8+
labels:
9+
- "dependencies"
10+
commit-message:
11+
prefix: "feat"
12+
include: "scope"
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "daily"
17+
time: "08:00"
18+
labels:
19+
- "dependencies"
20+
commit-message:
21+
prefix: "chore"
22+
include: "scope"
23+
- package-ecosystem: "docker"
24+
directory: "/"
25+
schedule:
26+
interval: "daily"
27+
time: "08:00"
28+
labels:
29+
- "dependencies"
30+
commit-message:
31+
prefix: "feat"
32+
include: "scope"

0 commit comments

Comments
 (0)