-
Notifications
You must be signed in to change notification settings - Fork 0
Support specifying github actions in mergit.yml #227
Copy link
Copy link
Open
Description
GitHub actions are represented in the GitHub API separately from the Commit statuses API. So we should support both.
# .mergit.yaml
expected:
statuses:
- ci/circleci: asdf
workflows:
"My workflow":
- build
- test(transition: top-level statuses alias for expected: { statuses: ... })
Graphql query:
query {
repository(...) {
object(...) {
... on Commit {
status {
# "ci/circleci: asdf"
contexts { context }
}
checkSuites(...) {
nodes {
workflowRun {
# "My workflow"
workflow { name }
}
checkRuns(...) {
# "build" + status
nodes { name, status }
}
}
}
}
}
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels