-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Description
GitHub Actions currently can't be triggered manually, and it would be nice to trigger a build of an image without having to push a commit to the appropriate place.
This blog post using webhooks might shows a way to do that.
After that is setup, you can write some bash aliases that wraps the curl commands to build the appropriate image, ie.:
curl -X POST https://api.github.com/repos/:owner/:repo/dispatches \
-H 'Accept: application/vnd.github.everest-preview+json' \
-H 'Authorization: token TOKEN_VALUE_HERE' \
--data '{"event_type": "CUSTOM_ACTION_NAME_HERE"}'
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request