How Can I Use Github Actions and Pipedream to Create a Front-End for Updating a Website?

This topic was automatically generated from Slack. You can find the original thread here.

So, I deploy updates for a friends website in Github. Today, I decided to come up with a ‘front_end’ that allowed my friend add updates and approve it for upload to the website.

I used Airtable for the form, with a button sending form values to a custom source in Pipedream. The custom source checks the type of content (publication or press) that was updated and directs the event query to a specified webhook that triggers a workflow.

Each workflow gets the necessary yaml file in Github, adds the update and commits to Github.

The repo is rebuilt by a Github action and the update goes live.

I will be investigating using this to put together my pipedream codes into single files in Github.

:slightly_smiling_face:

image.png

image.png

This is great! Thanks for sharing