With GitHub Actions you can react to events (anything that happens on GitHub) and run command (Actions). See it as the Event Driven pattern applied to modern DevOps.
Native Android developer/Consultant for Appwise, I work on custom projects for clients.
PHP/JS (web) developer in my freetime. Trying to keep learning in an ever changing tech world.
Latest comments (24)
There's nothing straightforward than an example, the last one I wrote: github.com/angt/secret/blob/master...
Itâs just some
do_action('push')stuff within the GitHubâs WordPress site environment.We then do some
add_action('push', function() {})stuff to listen to thepushevent through our WordPress plugin for GitHub.đ€
Not an explanation but here's a bunch of working examples different action workflows! github.com/drewmullen/actions-play...
When a GitHub event you've defined happens, someone else's computer does whatever you've told it to do.
I was thinking to create a series for this on Dev and you gave me another reason for it. đ
Run a Docker container or Node script with access to your code when something happens on Github.
With GitHub Actions you can react to events (anything that happens on GitHub) and run command (Actions). See it as the Event Driven pattern applied to modern DevOps.
They work well đ
Travis CI on steroids? đ€
Serverless in GitHub that's free for Open Source.