Pratik Sinha pks2906
  • Joined on 2026-03-19
pks2906 pushed to fix/obs-status-fallback at pks2906/autogits 2026-04-04 14:38:54 +02:00
61109c645c [WIP] obs-status-service: linkyfy repositoryname for fallback status
pks2906 pushed to fix/obs-status-fallback at pks2906/autogits 2026-04-04 14:26:35 +02:00
ab1a93d68e [WIP] obs-status-service: move fallback line to repository title instead of badge
pks2906 commented on pull request git-workflow/autogits#217 2026-04-04 13:53:46 +02:00
[WIP] - obs-status-service: provide fallback link when build log is unavailable

Thanks, that makes sense.

You're right that having the same badge link to different targets depending on the state can lead to inconsistent behavior.

I’ll update the approach to keep the…

pks2906 commented on pull request git-workflow/autogits#217 2026-04-04 13:52:52 +02:00
[WIP] - obs-status-service: provide fallback link when build log is unavailable

Thanks for pointing this out.

I commented it out earlier while debugging the unreachable code issue caused by the return statement, but I agree that leaving commented code is not ideal.

I’ll…

pks2906 commented on pull request git-workflow/autogits#217 2026-04-04 10:56:28 +02:00
[WIP] - obs-status-service: provide fallback link when build log is unavailable

Hi,

I’ve implemented the fallback logic as discussed in #94. Would appreciate your feedback.

Thanks!

pks2906 created pull request git-workflow/autogits#217 2026-04-04 10:53:46 +02:00
[WIP] - obs-status-service: provide fallback link when build log is unavailable
pks2906 created branch fix/obs-status-fallback in pks2906/autogits 2026-04-04 10:49:09 +02:00
pks2906 pushed to fix/obs-status-fallback at pks2906/autogits 2026-04-04 10:49:09 +02:00
1c9f24c4ba obs-status-service: provide fallback link when build log is unavailable
pks2906 commented on issue git-workflow/autogits#94 2026-04-03 20:58:51 +02:00
BR image does not provide link to project when no build happened

Hi,

I’ve gone through the issue in detail and also reviewed the related pull requests #97 and #98.

From my understanding:

  • #97 improves the API by allowing format selection via query…
pks2906 commented on pull request git-workflow/autogits#191 2026-03-26 09:02:25 +01:00
obs-status-service: add --test-run mode with Redis mock

@dgarcia Thanks for the feedback!

I have addressed all the review comments:

  • Applied go fmt for consistent indentation (tabs instead of spaces)
  • Removed fallback logic in redismock to…
pks2906 pushed to feature/test-run-mock at pks2906/autogits 2026-03-26 08:58:54 +01:00
ab2e6af283 fix: address review feedback (formatting, fallback removal)
pks2906 commented on pull request git-workflow/autogits#191 2026-03-25 19:14:28 +01:00
obs-status-service: add --test-run mode with Redis mock

Understood, removing the error fallback so the process crashes naturally if there's an issue parsing the test data bzip. Will fix this along with the indentation changes.

pks2906 commented on pull request git-workflow/autogits#191 2026-03-25 19:13:33 +01:00
obs-status-service: add --test-run mode with Redis mock

Hi @danigm, thank you for the feedback! I will fix the indentation to use tabs instead of spaces. Will push the changes shortly.

pks2906 pushed to feature/add-root-index-page at pks2906/autogits 2026-03-22 14:46:38 +01:00
e56a0511b2 Merge branch 'main' into feature/add-root-index-page
1fc2983331 Let obsHost and targetRepo be configured in .env too
710561b82d Add obs-groups-bot serivce and timer
4f170333c4 Use an allow-list regex approach instead
eb82064855 Do not overuse fmt.Sprintf if not needed
Compare 34 commits »
pks2906 pushed to feature/test-run-mock at pks2906/autogits 2026-03-22 09:24:31 +01:00
cb56278404 Merge branch 'main' into feature/test-run-mock
1fc2983331 Let obsHost and targetRepo be configured in .env too
710561b82d Add obs-groups-bot serivce and timer
4f170333c4 Use an allow-list regex approach instead
eb82064855 Do not overuse fmt.Sprintf if not needed
Compare 34 commits »
pks2906 commented on issue git-workflow/autogits#114 2026-03-21 11:02:14 +01:00
obs-status-service: Add a link builder as default page

Hi,

I’ve implemented a minimal root index page based on the previous discussion and feedback on keeping it simple.

PR: #193

It serves a static HTML page at / with basic usage…

pks2906 created pull request git-workflow/autogits#193 2026-03-21 11:01:28 +01:00
obs-status-service: add minimal root index page with usage info
pks2906 created branch feature/add-root-index-page in pks2906/autogits 2026-03-21 10:50:23 +01:00
pks2906 pushed to feature/add-root-index-page at pks2906/autogits 2026-03-21 10:50:23 +01:00
3b6985ed3a obs-status-service: add minimal root index page with usage info
pks2906 commented on issue git-workflow/autogits#113 2026-03-20 21:06:56 +01:00
obs-status-service: Add a command line option to run in test mode

Hi, I have implemented a solution for this issue by introducing a --test-run mode to allow running the service without a Redis instance.

This includes:

  • Adding a RedisClient interface -…