Open
Description
At the time of this writing pocketci's events API is simple and expressed on either a YAML file:
events:
pull_request:
- main
push:
- main
Or on the pocketci module itself:
type EventType string
const (
PullRequestEvent EventType = "pull_request"
CommitPushEvent EventType = "push"
)
This is good enough to get us started playing with the concept of moving some of the orchestrating logic to modules, but it falls apart as soon as you start tackling more complex use cases or you look at how tools other than GitHub handle this.
The goal of this issue is to consolidate research and opinions on what kind of events API pocketci should express and how close those should be to the code written by the user.
Metadata
Metadata
Assignees
Labels
No labels