• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

radio-t / super-bot
75%

Build:
DEFAULT BRANCH: master
Repo Added 28 Jan 2020 06:53PM UTC
Token isIrxvozFJpYsxobywtK8fHegAbMbhJXU regen
Build 537 Last
Files 36
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH master
branch: SELECT
CHANGE BRANCH
x
Sync Branches
  • No branch selected
  • 22-fix-extend
  • 22-issue
  • 50-issue-fix
  • add-history-support-to-openai
  • add-pin-to-cut-message
  • add-podcast-link-to-MsgBroadcastStarted-message
  • agent-one
  • allow-other-groups
  • ban-by-multibot
  • banhammer-ban-by-userid
  • case_insensitive_openai
  • context_openai
  • cov-1
  • dependabot/go_modules/github.com/redis/go-redis/v9-9.7.3
  • dependabot/go_modules/github.com/slack-go/slack-0.23.1
  • dependabot/go_modules/go-modules-updates-1313cd4f86
  • dependabot/go_modules/go-modules-updates-1fa0d48fe6
  • dependabot/go_modules/go-modules-updates-46cd2b41fd
  • dependabot/go_modules/go-modules-updates-4eb7ca3412
  • dependabot/go_modules/go-modules-updates-6d46581adb
  • dependabot/go_modules/go-modules-updates-83cb7119c5
  • dependabot/go_modules/go-modules-updates-a3d3f3c0fb
  • dependabot/go_modules/go-modules-updates-b97c974778
  • dependabot/go_modules/go-modules-updates-d9f444d3b5
  • dependabot/go_modules/go-modules-updates-ef4ba45f0b
  • dependabot/go_modules/go-modules-updates-ffef3402cf
  • dependabot/go_modules/golang.org/x/net-0.17.0
  • dependabot/go_modules/golang.org/x/net-0.33.0
  • dependabot/go_modules/golang.org/x/net-0.36.0
  • dependabot/go_modules/golang.org/x/net-0.55.0
  • dependabot/go_modules/golang.org/x/net-0.7.0
  • dependabot/go_modules/golang.org/x/text-0.24.0
  • dependabot/go_modules/golang.org/x/text-0.3.8
  • enable_auto_response_fix
  • export-broadcast-partial-match
  • export-ignore-empty-decorations
  • export-small-improvements
  • feature/markdown-new-content-extraction
  • feature/new-f-case
  • fix-ban-no-username
  • fix-exporter-panic
  • fix-exporter-panic-2
  • fix-mrkdown-parse-error
  • fix-spammer-display-name
  • fix-username
  • go-fix
  • idle
  • is_reply
  • kazhuravlev/calculate-time-to-stream
  • master
  • master-1
  • mention_with_underscore
  • more_w
  • no-ban-old-messages
  • only_wtf_check
  • openai_wtf_ban
  • parse_mode_enum
  • paskal/add_dependabot
  • paskal/channel_ban
  • paskal/dependabot-disable-updates
  • paskal/dependabot-security-updates
  • paskal/error_handling
  • paskal/facelift
  • paskal/fix_golangci_lint
  • paskal/fix_telegram_msgs
  • paskal/moq
  • paskal/offline_tests
  • paskal/telegram_v5
  • paskal/update-packages
  • paskal/update_modules
  • patch-1
  • pincut
  • preppost
  • prevent_shadowing
  • readme
  • refs/tags/v0.2.0
  • refs/tags/v0.3.0
  • reply-to
  • reporter-handle-deleted-messages
  • revert-64-va/moar_wtfs
  • spam-filter
  • spam-local
  • summary_for_user_links
  • telegram
  • tests-update
  • unpin-messages
  • update-ci-actions
  • update-deps
  • update-to-go-1.24
  • vendor_up
  • workflow-permissions
  • wtf
  • wtf-bot-message-formatting
  • wtf_case
  • wtf_human_duration
  • wtfchecker1.1
  • wtffix
  • wttbot

20 Aug 2026 12:41AM UTC coverage: 75.118% (+0.01%) from 75.104%
32318251401

push

github

web-flow
Update dependencies and move to Go 1.26 (#163)

* Fix log verb for the user id in the CAS spam check

`%q` on an int64 prints a single-quoted character literal, so a CAS hit
logged the user id as a stray rune instead of a number. Go 1.26 vet
reports it, which turns it into a build failure once the module's `go`
directive is raised.

* Update dependencies and move to Go 1.26

Bumps every module to its current release, re-runs `go mod vendor`, and
raises the `go` directive to 1.26.0 with the workflow's `go-version` to
match, so CI no longer builds on an older toolchain than the module
declares. The x/net bump to v0.58.0 clears Dependabot alert 18, the
moderate denial of service in the HTML parser, and supersedes the
pending #159.

go-openai v1.42.0 marks `ChatCompletionRequest.MaxTokens` deprecated in
favour of `MaxCompletionTokens`. The field is still accepted for
non-reasoning models and still marshals as `max_tokens`, so the
non-reasoning branch keeps it behind a scoped staticcheck exception
rather than changing which parameter the bot sends as a side effect of a
dependency bump.

`umputun/baseimage:buildgo-latest` currently ships go1.26.0 with
`GOTOOLCHAIN=local`, so 1.26.0 is the highest directive the image will
build; `docker build` on this branch succeeds.

---------

Co-authored-by: Umputun <umputun@gmail.com>

4 of 4 new or added lines in 2 files covered. (100.0%)

2711 of 3609 relevant lines covered (75.12%)

54.15 hits per line

Relevant lines Covered
Build:
Build:
3609 RELEVANT LINES 2711 COVERED LINES
54.15 HITS PER LINE
Source Files on master
  • Tree
  • List 36
  • Changed 1
  • Source Changed 0
  • Coverage Changed 1
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
32318251401 master Update dependencies and move to Go 1.26 (#163) * Fix log verb for the user id in the CAS spam check `%q` on an int64 prints a single-quoted character literal, so a CAS hit logged the user id as a stray rune instead of a number. Go 1.26 vet repor... push 20 Aug 2026 12:42AM UTC web-flow github
75.12
32318147143 update-deps Merge master into update-deps Keeps go 1.26 from this branch and actions/setup-go@v7 from the action bumps merged in #161. Pull #163 20 Aug 2026 12:40AM UTC umputun github
75.12
32317846857 master Apply go fix (#162) `go fix` in Go 1.26 runs the modernizer analysers, so it rewrites `strings.HasPrefix`/`TrimPrefix` pairs into `strings.CutPrefix`, `sort.Slice` into `slices.Sort`, counted `for` loops into `for range n`, `strings.Fields` into ... push 20 Aug 2026 12:35AM UTC web-flow github
75.1
32317757129 go-fix Merge branch 'master' into go-fix Pull #162 20 Aug 2026 12:34AM UTC web-flow github
75.1
32317744466 master Bump CI actions to current majors (#161) actions/setup-go v5 to v7, actions/checkout v4 to v7, and golangci/golangci-lint-action v7 to v9. The v7 majors of the two actions/* are ESM and Node 24 runtime migrations; checkout v7 also blocks fork PR ... push 20 Aug 2026 12:34AM UTC web-flow github
75.11
32317635705 update-ci-actions Merge master into update-ci-actions Keeps the action version bumps from this branch and the persist-credentials: false added by #160. Pull #161 20 Aug 2026 12:32AM UTC umputun github
75.11
32317639948 update-ci-actions Merge master into update-ci-actions Keeps the action version bumps from this branch and the persist-credentials: false added by #160. Pull #161 20 Aug 2026 12:32AM UTC umputun github
75.11
32317483491 master Add explicit token permissions to CI workflow Previously, the workflow declared no `permissions` block, so the GITHUB_TOKEN inherited the repository default, which can be read-write for every scope. Nothing in the job writes through that token: c... push 20 Aug 2026 12:30AM UTC umputun github
75.11
32258107257 update-deps Update dependencies and move to Go 1.26 Bumps every module to its current release, re-runs `go mod vendor`, and raises the `go` directive to 1.26.0 with the workflow's `go-version` to match, so CI no longer builds on an older toolchain than the m... Pull #163 19 Aug 2026 01:27PM UTC paskal github
75.12
32257769945 go-fix Apply go fix `go fix` in Go 1.26 runs the modernizer analysers, so it rewrites `strings.HasPrefix`/`TrimPrefix` pairs into `strings.CutPrefix`, `sort.Slice` into `slices.Sort`, counted `for` loops into `for range n`, `strings.Fields` into `string... Pull #162 19 Aug 2026 01:24PM UTC paskal github
75.1
See All Builds (512)

Badge your Repo: super-bot

We detected this repo isn’t badged! Grab the embed code to the right, add it to your repo to show off your code coverage, and when the badge is live hit the refresh button to remove this message.

Could not find badge in README.

Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

Refresh
  • Settings
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc