this post was submitted on 22 May 2026
297 points (97.4% liked)

Technology

84866 readers
3821 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] flint@lemmy.zip 23 points 1 day ago* (last edited 1 day ago) (1 children)

codeberg.org (which runs on Forgejo) offers a nice ci solution: Woodpecker.

[–] asdfasdfasdf@lemmy.world 8 points 1 day ago (1 children)

It's nice that they have this but the real problem is GitHub Actions is provided for free for all repos. Woodpecker looks like you need to self host. I'm not going to set up and pay for host just for the small amount of time I have working on one of my projects.

[–] flint@lemmy.zip 18 points 1 day ago* (last edited 1 day ago) (1 children)

You're right, that it doesn't just work as conveniently out-of-the-box on Codeberg. However you do not have to self-host: You merely have to apply to get access to their hosted Woodpecker instance at ci.codeberg.org.

See docs here if you want to try it out: https://docs.codeberg.org/ci/

Onboarding requires a few manual steps, as to prevent the abuse of Codeberg's limited resources. You will need to request access by filling out this form. After submitting, a Codeberg volunteer will review your request and grant you access if your use case is appropriate.

Edit: added quote from docs

[–] Undaunted@feddit.org 6 points 1 day ago (1 children)

I don't know how Woodpecker works, but I have a lot of experience with Gitlab runners. You can startup a runner locally, as it doesn't need to be publicly accessible from the internet. Only the Gitlab instance needs to be accessible for the runner, as the runner actively fetches new jobs from there and pushes the results again.

If Woodpecker works similarly, you could just deploy the runner locally while you're actively developing and your computer is running anyway, if you don't want to pay for a VPS.

[–] timbuck2themoon@sh.itjust.works 1 points 14 hours ago

That's how it works that I can see. I run it and woodpecker just waits for an event like a push or whatever to your repo and then it runs the jobs.

As someone who runs gitlab as well I much prefer woodpecker CI to github/forgejo actions. Personal preference entirely though.