Skip to content
Trigger Github Action Pack
Share
Explore

icon picker
Trigger Github Action Pack

A Coda Pack that adds the ability to fire a Github Action from any Coda Action (button press, automation, etc.).

Setting Up

It takes a couple pieces to get this working, but it'll totally be worth it.

Github Side

First, configure your workflow to be able to be triggered by an external event.
Then, create a Personal Access Token (PAT).

Github Action

Add a repository_dispatch with a corresponding event_type. You'll configure the event on the Coda side once you install the pack. All workflows with the same event_type can trigger from the same Coda Action!
Here's an example:
## my-workflow.yml

on:
repository_dispatch:
types: [coda-action]

Personal Access Token

Ensure to include the repo scope.
Set the expiration to something reasonable.
Pro tip: set a calendar reminder a few days in advance so you don't forget to refresh it!
Store it someplace safe so you can get back to it. Github won't show it to you again after it shows it to you once!

Coda Side

Create a button
image
Choose the "Trigger Github Action" Pack
image
Choose "Set up another account", and paste your PAT (from above) into the box.
image
Depending on your security needs, choose the appropriate answer for you
(Recommended: “Anyone this doc is shared with” - this way no one else will need to set up the PAT). But, again, depends on your needs:
image.png
Configure the repository and dispatch settings
image
repo_with_owner- should be something likeyour_github_username/name_of_your_repo
event- should correspond to the values used in thetypeselement of yourrepository_dispatchtrigger above.
Remember: This will trigger all workflows on the repository that have a matchingrepository_dispatchevent type.
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.