File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 />
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff 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```
Original file line number Diff line number Diff 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)"
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ builds:
3232archives :
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!"
You can’t perform that action at this time.
0 commit comments