DEV Community

Discussion on: How do GitHub Actions work?

Collapse
 
taufik_nurrohman profile image
Taufik Nurrohman • Edited

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 the push event through our WordPress plugin for GitHub.

🤐