diff --git a/.github/SECURITY.md b/.github/SECURITY.md index bba8d0e..92e5b5c 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -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 |
diff --git a/.github/tech-conventions/github-workflows.md b/.github/tech-conventions/github-workflows.md index bd7836c..f4eb760 100644 --- a/.github/tech-conventions/github-workflows.md +++ b/.github/tech-conventions/github-workflows.md @@ -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) diff --git a/.github/tech-conventions/testing-standards.md b/.github/tech-conventions/testing-standards.md index 9ed6dd4..a1b166e 100644 --- a/.github/tech-conventions/testing-standards.md +++ b/.github/tech-conventions/testing-standards.md @@ -259,8 +259,4 @@ func TestComplexWorkflow(t *testing.T) { // ... test implementation } -```ired method is skipped - - // ... test implementation -} ``` diff --git a/.github/workflows/fortress-setup-config.yml b/.github/workflows/fortress-setup-config.yml index 66f0fc1..792eabb 100644 --- a/.github/workflows/fortress-setup-config.yml +++ b/.github/workflows/fortress-setup-config.yml @@ -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)" diff --git a/.gitpod.yml b/.gitpod.yml index b8994bd..6496fc6 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -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" diff --git a/.goreleaser.yml b/.goreleaser.yml index 07c7d4a..b252637 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -32,7 +32,7 @@ builds: archives: - id: go-sanitize name_template: >- - {{- .ProjectName }}_ {{- .Version }}_ {{- .Os }}_ {{- .Arch }} + {{- .ProjectName }}_{{- .Version }}_{{- .Os }}_{{- .Arch }} files: - LICENSE - README.md @@ -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: '' @@ -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!"