Skip to content

Commit c5fe7e5

Browse files
committed
sync: update 6 files from source repository
1 parent fe3df22 commit c5fe7e5

6 files changed

Lines changed: 6 additions & 13 deletions

File tree

.github/SECURITY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Security is a priority. We maintain a proactive stance to identify and fix vulne
88

99
| Version | Status |
1010
|---------|----------------------|
11+
| 0.x.x | ✅ Supported & Active |
1112
| 1.x.x | ✅ Supported & Active |
1213

1314
<br/>

.github/tech-conventions/github-workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,4 +275,4 @@ permissions:
275275
### External
276276
* [GitHub Actions Documentation](https://docs.github.com/en/actions)
277277
* [Security Hardening Guide](https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions)
278-
* [Workflow Syntax Reference](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions)s)
278+
* [Workflow Syntax Reference](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions)

.github/tech-conventions/testing-standards.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,4 @@ func TestComplexWorkflow(t *testing.T) {
259259

260260
// ... test implementation
261261
}
262-
```ired method is skipped
263-
264-
// ... test implementation
265-
}
266262
```

.github/workflows/fortress-setup-config.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -432,10 +432,6 @@ jobs:
432432
433433
# Check for codecov token requirement
434434
if [ "$PROVIDER" == "codecov" ]; then
435-
if [ "${{ env.CODECOV_TOKEN_REQUIRED }}" == "true" ] && [ -z "${{ secrets.CODECOV_TOKEN }}" ]; then
436-
echo "⚠️ WARNING: CODECOV_TOKEN_REQUIRED is true but CODECOV_TOKEN secret may not be set"
437-
echo " Codecov upload may fail without a token for private repositories"
438-
fi
439435
echo "✅ Coverage provider: Codecov"
440436
else
441437
echo "✅ Coverage provider: Internal (go-coverage with GitHub Pages)"

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tasks:
3636
echo "📖 Quick start:"
3737
echo " 1. Try: magex test"
3838
echo " 2. Make your changes"
39-
echo " 3. Run: magex format_fix && magex lint && magex test"
39+
echo " 3. Run: magex format:fix && magex lint && magex test"
4040
echo " 4. Commit and push your changes"
4141
echo ""
4242
echo "💡 For more help: magex help"

.goreleaser.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ builds:
3232
archives:
3333
- id: go-sanitize
3434
name_template: >-
35-
{{- .ProjectName }}_ {{- .Version }}_ {{- .Os }}_ {{- .Arch }}
35+
{{- .ProjectName }}_{{- .Version }}_{{- .Os }}_{{- .Arch }}
3636
files:
3737
- LICENSE
3838
- README.md
@@ -58,7 +58,7 @@ announce:
5858
# See more at: https://goreleaser.com/customization/announce/#slack
5959
slack:
6060
enabled: false
61-
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Changelog: https://github.com/mrz1836/{{ .ProjectName }}/releases/tag/{{ .Tag }}"
61+
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Changelog: https://github.com/{{ .GitOwner }}/{{ .ProjectName }}/releases/tag/{{ .Tag }}"
6262
channel: "#test_slack"
6363
# username: ''
6464
# icon_emoji: ''
@@ -88,6 +88,6 @@ announce:
8888
# Username for your Reddit account
8989
username: ""
9090
# Defaults to `{{ .GitURL }}/releases/tag/{{ .Tag }}`
91-
# url_template: 'https://github.com/mrz1836/{{ .ProjectName }}/releases/tag/{{ .Tag }}'
91+
# url_template: 'https://github.com/{{ .GitOwner }}/{{ .ProjectName }}/releases/tag/{{ .Tag }}'
9292
# Defaults to `{{ .ProjectName }} {{ .Tag }} is out!`
9393
title_template: "{{ .ProjectName }} {{ .Tag }} is out!"

0 commit comments

Comments
 (0)