Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Security is a priority. We maintain a proactive stance to identify and fix vulne

| Version | Status |
|---------|----------------------|
| 0.x.x | ✅ Supported & Active |
| 1.x.x | ✅ Supported & Active |

<br/>
Expand Down
2 changes: 1 addition & 1 deletion .github/tech-conventions/github-workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,4 +275,4 @@ permissions:
### External
* [GitHub Actions Documentation](https://docs.github.com/en/actions)
* [Security Hardening Guide](https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions)
* [Workflow Syntax Reference](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions)s)
* [Workflow Syntax Reference](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions)
4 changes: 0 additions & 4 deletions .github/tech-conventions/testing-standards.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,4 @@ func TestComplexWorkflow(t *testing.T) {

// ... test implementation
}
```ired method is skipped

// ... test implementation
}
```
4 changes: 0 additions & 4 deletions .github/workflows/fortress-setup-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -432,10 +432,6 @@ jobs:

# Check for codecov token requirement
if [ "$PROVIDER" == "codecov" ]; then
if [ "${{ env.CODECOV_TOKEN_REQUIRED }}" == "true" ] && [ -z "${{ secrets.CODECOV_TOKEN }}" ]; then
echo "⚠️ WARNING: CODECOV_TOKEN_REQUIRED is true but CODECOV_TOKEN secret may not be set"
echo " Codecov upload may fail without a token for private repositories"
fi
echo "✅ Coverage provider: Codecov"
else
echo "✅ Coverage provider: Internal (go-coverage with GitHub Pages)"
Expand Down
2 changes: 1 addition & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tasks:
echo "📖 Quick start:"
echo " 1. Try: magex test"
echo " 2. Make your changes"
echo " 3. Run: magex format_fix && magex lint && magex test"
echo " 3. Run: magex format:fix && magex lint && magex test"
echo " 4. Commit and push your changes"
echo ""
echo "💡 For more help: magex help"
Expand Down
6 changes: 3 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ builds:
archives:
- id: go-sanitize
name_template: >-
{{- .ProjectName }}_ {{- .Version }}_ {{- .Os }}_ {{- .Arch }}
{{- .ProjectName }}_{{- .Version }}_{{- .Os }}_{{- .Arch }}
files:
- LICENSE
- README.md
Expand All @@ -58,7 +58,7 @@ announce:
# See more at: https://goreleaser.com/customization/announce/#slack
slack:
enabled: false
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Changelog: https://github.com/mrz1836/{{ .ProjectName }}/releases/tag/{{ .Tag }}"
message_template: "{{ .ProjectName }} {{ .Tag }} is out! Changelog: https://github.com/{{ .GitOwner }}/{{ .ProjectName }}/releases/tag/{{ .Tag }}"
channel: "#test_slack"
# username: ''
# icon_emoji: ''
Expand Down Expand Up @@ -88,6 +88,6 @@ announce:
# Username for your Reddit account
username: ""
# Defaults to `{{ .GitURL }}/releases/tag/{{ .Tag }}`
# url_template: 'https://github.com/mrz1836/{{ .ProjectName }}/releases/tag/{{ .Tag }}'
# url_template: 'https://github.com/{{ .GitOwner }}/{{ .ProjectName }}/releases/tag/{{ .Tag }}'
# Defaults to `{{ .ProjectName }} {{ .Tag }} is out!`
title_template: "{{ .ProjectName }} {{ .Tag }} is out!"