this post was submitted on 20 Mar 2025
1 points (100.0% liked)

Programming

22314 readers
14 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
top 8 comments
sorted by: hot top controversial new old
[–] crmsnbleyd@sopuli.xyz 1 points 5 months ago (2 children)

Just self host an open source runner like woodpecker and you'll never have to move again

hell you can even self host github actions via act

[–] runeko@programming.dev 1 points 5 months ago

This. As someone who migrated an organization's repos from a self hosted Git server to GitHub (begrudgingly) and then back to a self hosted Git server again when it didn't meet the business needs ... emphatically this.

[–] 0xDEADBEEFCAFE@programming.dev 0 points 5 months ago (1 children)

Just self host an open source runner like woodpecker and you’ll never have to move again

How painful is the setup and general maintenance/security?

I'm considering the idea but I just don't want to deal with people abusing exploits in the actions that give them access to my LAN.

[–] crmsnbleyd@sopuli.xyz 0 points 5 months ago

If you're working with a team, you can only let certain people trigger checks

[–] lemmeBe@sh.itjust.works 0 points 5 months ago (1 children)

Do formatting and linting and such autofix issues automatically as part of pre-commit checks. That way they don't end up as part of the CI.

[–] Flipper@feddit.org 0 points 5 months ago (1 children)

If it's open source I'd still add it, because a lot of people can't follow basic instructions.

[–] lemmeBe@sh.itjust.works -1 points 5 months ago (1 children)

They don't have to follow anything except try to commit their changes. Won't be possible even locally if linting or typechecking fail.

[–] bamboo@lemm.ee 1 points 5 months ago

Pre-commit hooks can’t be installed automatically and most people won’t even know they exist.